diff --git a/source/TitleState.hx b/source/TitleState.hx index a2ac4af62..d1fa230a2 100644 --- a/source/TitleState.hx +++ b/source/TitleState.hx @@ -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)