diff --git a/apps/demos/scenery/game.c b/apps/demos/scenery/game.c index ad21193..d2454ec 100644 --- a/apps/demos/scenery/game.c +++ b/apps/demos/scenery/game.c @@ -1,6 +1,7 @@ #include "state.h" #include "scenes/scene.h" #include "scenes/title.h" +#include "scenes/ingame.h" #include "twn_game_api.h" @@ -17,7 +18,7 @@ void game_tick(void) { State *state = ctx.udata; state->ctx = &ctx; - state->scene = title_scene(state); + state->scene = ingame_scene(state); } }