diff options
Diffstat (limited to 'examples')
-rw-r--r-- | examples/simple.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/simple.scm b/examples/simple.scm index 65321e9..891e0fc 100644 --- a/examples/simple.scm +++ b/examples/simple.scm @@ -30,7 +30,7 @@ ;; Load a sprite and center it on the screen. ;; Must be done AFTER opening the window. (set! sprite (load-sprite "images/sprite.png" #:position (vector (/ window-width 2) - (/ window-height 2)))) + (/ window-height 2)))) ;; Start the game loop. ;; The render callback will be called through this procedure. |