diff options
author | David Thompson <dthompson2@worcester.edu> | 2014-05-18 18:58:14 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2014-05-18 18:58:14 -0400 |
commit | 6e1e00e7438acc477c5574935b3ecb9c140d0a22 (patch) | |
tree | b6e15e7481225c966ff19197fc9f794bae8ec734 | |
parent | 88d3b0cc3e739c118c8738295f55e735bea50e42 (diff) |
Fix sandbox.
* sandbox: Use start/stop-game-loop procedures.
-rwxr-xr-x | sandbox | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -40,11 +40,11 @@ (start-2d-repl) -(add-hook! window-close-hook quit-game) +(add-hook! window-close-hook stop-game-loop) (display "Welcome to the guile-2d sandbox. Happy hacking!\n") (with-window (make-window #:title "Guile-2D Sandbox") - (run-game-loop)) + (start-game-loop)) (display "Bye!\n") |