Skip to content

Commit

Permalink
Fix crash when downloading SIF beatmap but pressed back.
Browse files Browse the repository at this point in the history
  • Loading branch information
MikuAuahDark committed Feb 25, 2018
1 parent 14718e2 commit b5c20d1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion download_beatmap_sif2.lua
Expand Up @@ -326,7 +326,7 @@ end

function DLBeatmap.Exit()
if DLBeatmap.Download:IsDownloading() then
DLBeamtap.Download:Cancel()
DLBeatmap.Download:Cancel()
end
end

Expand Down
4 changes: 2 additions & 2 deletions main.lua
Expand Up @@ -24,10 +24,10 @@
--]]---------------------------------------------------------------------------
-- Version string
DEPLS_VERSION = "2.0.1"
DEPLS_VERSION = "2.0.2"
-- Version number
-- In form xxyyzzww. x = major, y = minor, z = patch, w = pre-release counter (99 = not a pre release)
DEPLS_VERSION_NUMBER = 02000199
DEPLS_VERSION_NUMBER = 02000299
-- We don't want to protect the global table if we run it from LuaJIT/Terra
if love._exe then
Expand Down

0 comments on commit b5c20d1

Please sign in to comment.