Update Controls.hx

Changed Control.RESET from [Y] to [6]. 

Why? Because that means instead of pressing Y to reset the song, you instead press the select button, which prevents accidental resets if you are playing on a non-standard xbox controller. 

I brought up this issue back in 2022 and it never got solved so I just decided I'd make the pull request myself.
This commit is contained in:
Paradox 2023-06-15 11:22:37 -04:00 committed by GitHub
parent b644b6f8fe
commit eff5d59625
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -566,7 +566,7 @@ class Controls extends FlxActionSet
Control.NOTE_LEFT => [DPAD_LEFT, X, LEFT_STICK_DIGITAL_LEFT, RIGHT_STICK_DIGITAL_LEFT],
Control.NOTE_RIGHT => [DPAD_RIGHT, B, LEFT_STICK_DIGITAL_RIGHT, RIGHT_STICK_DIGITAL_RIGHT],
Control.PAUSE => [START],
Control.RESET => [Y]
Control.RESET => [6]
#if CAN_CHEAT
,Control.CHEAT => [X]
#end
@ -689,4 +689,4 @@ class Controls extends FlxActionSet
}
typedef SaveInputLists = {?keys:Array<Int>, ?pad:Array<Int>};
typedef SaveInputLists = {?keys:Array<Int>, ?pad:Array<Int>};