diff options
Diffstat (limited to '2d/game-loop.scm')
-rw-r--r-- | 2d/game-loop.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/2d/game-loop.scm b/2d/game-loop.scm index 631aef8..39fde9e 100644 --- a/2d/game-loop.scm +++ b/2d/game-loop.scm @@ -228,7 +228,7 @@ time in milliseconds that has passed since the last game update." (game-fullscreen? game)) (set! running? #t) (resume-game) - (push-stage (make-stage (game-first-scene game))) + (push-scene (game-first-scene game)) (spawn-server) (game-loop (SDL:get-ticks) 0) (close-window)) |