Skip to content

Commit

Permalink
videos supremacy
Browse files Browse the repository at this point in the history
  • Loading branch information
justaguy6 committed Oct 3, 2024
1 parent 5a458da commit d093e0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/options/ControlsSubState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ class ControlsSubState extends MusicBeatSubstate
if(FlxG.keys.justPressed.UP || FlxG.gamepads.anyJustPressed(DPAD_UP) || FlxG.gamepads.anyJustPressed(LEFT_STICK_DIGITAL_UP)) updateText(-1);
else if(FlxG.keys.justPressed.DOWN || FlxG.gamepads.anyJustPressed(DPAD_DOWN) || FlxG.gamepads.anyJustPressed(LEFT_STICK_DIGITAL_DOWN)) updateText(1);

if(FlxG.keys.justPressed.ENTER || FlxG.gamepads.anyJustPressed(START) || FlxG.gamepads.anyJustPressed(A))
if(controls.ACCEPT || FlxG.gamepads.anyJustPressed(START) || FlxG.gamepads.anyJustPressed(A))
{
if(options[curOptions[curSelected]][1] != defaultKey)
{
Expand Down Expand Up @@ -338,7 +338,7 @@ class ControlsSubState extends MusicBeatSubstate
closeBinding();
}
}
else if (FlxG.keys.pressed.BACKSPACE || FlxG.gamepads.anyPressed(BACK))
else if (controls.ACCEPT || FlxG.gamepads.anyPressed(BACK))
{
holdingEsc += elapsed;
if(holdingEsc > 0.5)
Expand Down

0 comments on commit d093e0a

Please sign in to comment.