diff --git a/apps/platformer/scenes/title.c b/apps/platformer/scenes/title.c index 1341d0d..92b3689 100644 --- a/apps/platformer/scenes/title.c +++ b/apps/platformer/scenes/title.c @@ -16,6 +16,7 @@ static void title_tick(State *state) { if (input_is_action_just_pressed(&state->ctx->input, "ui_accept")) { switch_to(state, ingame_scene); + return; } diff --git a/apps/scenery/scenes/title.c b/apps/scenery/scenes/title.c index 90e76af..90efd0b 100644 --- a/apps/scenery/scenes/title.c +++ b/apps/scenery/scenes/title.c @@ -13,6 +13,7 @@ static void title_tick(State *state) { if (input_is_action_just_pressed(&state->ctx->input, "ui_accept")) { switch_to(state, ingame_scene); + return; }