revert to default input on a non cpp target

This commit is contained in:
Kade M 2021-06-25 17:28:29 -07:00
parent 0024798715
commit 10d601ddc9

View File

@ -1441,7 +1441,9 @@ class PlayState extends MusicBeatState
return;
if (keys[data])
{
return;
}
keys[data] = true;
@ -3200,6 +3202,8 @@ class PlayState extends MusicBeatState
};
#end
var nonCpp = false;
// Prevent player input if botplay is on
if(PlayStateChangeables.botPlay)
@ -3209,6 +3213,10 @@ class PlayState extends MusicBeatState
releaseArray = [false, false, false, false];
}
#if !cpp
nonCpp = true;
#end
var anas:Array<Ana> = [null,null,null,null];
for (i in 0...pressArray.length)
@ -3225,7 +3233,7 @@ class PlayState extends MusicBeatState
});
}
if (KeyBinds.gamepad && !FlxG.keys.justPressed.ANY)
if ((KeyBinds.gamepad && !FlxG.keys.justPressed.ANY) || nonCpp)
{
// PRESSES, check for note hits
if (pressArray.contains(true) && generatedMusic)