Skip to content

Commit 823f800

Browse files
committed
kill off never used debug feature
1 parent 528b247 commit 823f800

2 files changed

Lines changed: 1 addition & 6 deletions

File tree

src/funkin/objects/ui/freeplay/FreeplayDJ.hx

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,6 @@ class FreeplayDJ extends FunkinSprite
1717
*/
1818
public var introDone:FlxSignal = new FlxSignal();
1919

20-
#if debug
21-
var allStates:Array<FreeplayDJState> = [Intro, Idle, Confirm];
22-
var curSelection:Int = -1;
23-
#end
24-
2520
public function new(x:Float, y:Float, id:String)
2621
{
2722
super(x, y);

src/funkin/states/ui/FreeplayState.hx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ class FreeplayState extends FunkinState
243243

244244
if (!blockInputs)
245245
{
246-
if (controls.justPressed.ACCEPT #if (debug && FLX_KEYBOARD) && !FlxG.keys.justPressed.SPACE #end)
246+
if (controls.justPressed.ACCEPT)
247247
{
248248
backingCard.confirm();
249249
dj.confirm();

0 commit comments

Comments
 (0)