diff options
Diffstat (limited to 'sly/game.scm')
-rw-r--r-- | sly/game.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sly/game.scm b/sly/game.scm index 38d230e..66f0893 100644 --- a/sly/game.scm +++ b/sly/game.scm @@ -31,6 +31,7 @@ #:use-module (gl) #:use-module (sly agenda) #:use-module (sly event) + #:use-module (sly guardian) #:use-module (sly math) #:use-module (sly signal) #:use-module (sly math vector) @@ -184,6 +185,7 @@ milliseconds of the last iteration of the game loop." (stop-game-loop))) ;; Let's play! (run-hook game-start-hook) + (run-guardian) (game-loop (sdl-ticks) 0)) (lambda (cont callback) (when (procedure? callback) |