diff --git a/Docs/Changelog_sm5.txt b/Docs/Changelog_sm5.txt index f5ffad4fb5..c8adfa338e 100644 --- a/Docs/Changelog_sm5.txt +++ b/Docs/Changelog_sm5.txt @@ -8,6 +8,10 @@ ________________________________________________________________________________ StepMania 5.0 $next | 2011???? -------------------------------------------------------------------------------- +2011/09/29 +---------- +* [Fallback theme] Fix ImmediateHoldLetGo function. [Wolfman2000] + 2011/09/26 ---------- * [Default theme] Added Song Timing Display user preference. [AJ] diff --git a/Themes/_fallback/Scripts/03 Gameplay.lua b/Themes/_fallback/Scripts/03 Gameplay.lua index 4c8a0d2c00..ce5bce7a1a 100644 --- a/Themes/_fallback/Scripts/03 Gameplay.lua +++ b/Themes/_fallback/Scripts/03 Gameplay.lua @@ -190,7 +190,7 @@ function MaxHoldLife() end function ImmediateHoldLetGo() - return not GAMESTATE:GetCurrentGame():GetName() == "pump" + return not (GAMESTATE:GetCurrentGame():GetName() == "pump") end function RollBodyIncrementsCombo() @@ -402,4 +402,4 @@ function GetCodeForGame(codeName) local gameName = string.lower(GAMESTATE:GetCurrentGame():GetName()) local inputCode = CodeDetectorCodes[codeName] return inputCode[gameName] or inputCode["default"] -end \ No newline at end of file +end