bullshit lol

This commit is contained in:
Cameron Taylor 2021-02-23 23:32:53 -05:00
parent 78241f9a67
commit 29d3d15741
2 changed files with 10 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 194 KiB

View File

@ -237,6 +237,16 @@ class TitleState extends MusicBeatState
var pressedEnter:Bool = FlxG.keys.justPressed.ENTER;
#if mobile
for (touch in FlxG.touches.list)
{
if (touch.justPressed)
{
pressedEnter = true;
}
}
#end
var gamepad:FlxGamepad = FlxG.gamepads.lastActive;
if (gamepad != null)