diff options
author | David Thompson <dthompson@member.fsf.org> | 2013-07-06 17:57:17 -0400 |
---|---|---|
committer | David Thompson <dthompson@member.fsf.org> | 2013-07-06 17:57:17 -0400 |
commit | 3930b9af6969043c1a976fc256d2c1261395f856 (patch) | |
tree | 5ffb93ff253bba1fc4cf29a6c8a8e27497267790 | |
parent | 0cac73fdec11776dd5a770554c581f808ee0721a (diff) |
Fix indenting.
-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. |