Skip to content

Commit b5c20d1

Browse files
committed
Fix crash when downloading SIF beatmap but pressed back.
1 parent 14718e2 commit b5c20d1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

download_beatmap_sif2.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ end
326326

327327
function DLBeatmap.Exit()
328328
if DLBeatmap.Download:IsDownloading() then
329-
DLBeamtap.Download:Cancel()
329+
DLBeatmap.Download:Cancel()
330330
end
331331
end
332332

main.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@
2424
--]]---------------------------------------------------------------------------
2525

2626
-- Version string
27-
DEPLS_VERSION = "2.0.1"
27+
DEPLS_VERSION = "2.0.2"
2828
-- Version number
2929
-- In form xxyyzzww. x = major, y = minor, z = patch, w = pre-release counter (99 = not a pre release)
30-
DEPLS_VERSION_NUMBER = 02000199
30+
DEPLS_VERSION_NUMBER = 02000299
3131

3232
-- We don't want to protect the global table if we run it from LuaJIT/Terra
3333
if love._exe then

0 commit comments

Comments
 (0)