We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 528b247 commit 823f800Copy full SHA for 823f800
2 files changed
src/funkin/objects/ui/freeplay/FreeplayDJ.hx
@@ -17,11 +17,6 @@ class FreeplayDJ extends FunkinSprite
17
*/
18
public var introDone:FlxSignal = new FlxSignal();
19
20
- #if debug
21
- var allStates:Array<FreeplayDJState> = [Intro, Idle, Confirm];
22
- var curSelection:Int = -1;
23
- #end
24
-
25
public function new(x:Float, y:Float, id:String)
26
{
27
super(x, y);
src/funkin/states/ui/FreeplayState.hx
@@ -243,7 +243,7 @@ class FreeplayState extends FunkinState
243
244
if (!blockInputs)
245
246
- if (controls.justPressed.ACCEPT #if (debug && FLX_KEYBOARD) && !FlxG.keys.justPressed.SPACE #end)
+ if (controls.justPressed.ACCEPT)
247
248
backingCard.confirm();
249
dj.confirm();
0 commit comments