Merge pull request #12 from Kiffolisk/patch-3

IM DUMB SORRY
This commit is contained in:
Kade M 2021-03-11 10:00:13 -08:00 committed by GitHub
commit 84e98ef9a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -124,7 +124,7 @@ class OptionsMenu extends MusicBeatState
grpControls.add(ctrl);
case 3:
FlxG.save.data.accuracyDisplay = !FlxG.save.data.accuracyDisplay;
var ctrl:Alphabet = new Alphabet(0, (70 * curSelected) + 30, "Toggle accuracy display " + (FlxG.save.data.accuracyDisplay ? "off" : "on"), true, false)
var ctrl:Alphabet = new Alphabet(0, (70 * curSelected) + 30, "Toggle accuracy display " + (FlxG.save.data.accuracyDisplay ? "off" : "on"), true, false);
ctrl.isMenuItem = true;
ctrl.targetY = curSelected - 3;
grpControls.add(ctrl);

View File

@ -1342,7 +1342,7 @@ class PlayState extends MusicBeatState
}
else
{
scoreTxt.text = "Score:" + songScore);
scoreTxt.text = "Score:" + songScore;
}
if (FlxG.keys.justPressed.ENTER && startedCountdown && canPause)
{