diff --git a/source/Options.hx b/source/Options.hx index aa4c244..f569151 100644 --- a/source/Options.hx +++ b/source/Options.hx @@ -220,7 +220,7 @@ class ResetButtonOption extends Option private override function updateDisplay():String { - return "Reset Button " + (!FlxG.save.data.distractions ? "off" : "on"); + return "Reset Button " + (!FlxG.save.data.resetButton ? "off" : "on"); } } diff --git a/source/OptionsMenu.hx b/source/OptionsMenu.hx index f06aba3..3142805 100644 --- a/source/OptionsMenu.hx +++ b/source/OptionsMenu.hx @@ -30,7 +30,7 @@ class OptionsMenu extends MusicBeatState #end new ScrollSpeedOption("Change your scroll speed (Left for -0.1, right for +0.1. If it's at 1, it will be chart dependent)"), new AccuracyDOption("Change how accuracy is calculated. (Accurate = Simple, Complex = Milisecond Based)"), - new ResetButtonOption("Enable and disable pressing R to gameover."), + new ResetButtonOption("Toggle pressing R to gameover."), // new OffsetMenu("Get a note offset based off of your inputs!"), new CustomizeGameplay("Drag'n'Drop Gameplay Modules around to your preference") ]),