diff --git a/assets/images/week54prototype.png b/assets/images/week54prototype.png new file mode 100644 index 0000000..dc34f32 Binary files /dev/null and b/assets/images/week54prototype.png differ diff --git a/source/TitleState.hx b/source/TitleState.hx index a2ac4af..d1fa230 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)