summaryrefslogtreecommitdiff
path: root/examples/simple.scm
diff options
context:
space:
mode:
authorDavid Thompson <dthompson@member.fsf.org>2013-07-06 17:57:17 -0400
committerDavid Thompson <dthompson@member.fsf.org>2013-07-06 17:57:17 -0400
commit3930b9af6969043c1a976fc256d2c1261395f856 (patch)
tree5ffb93ff253bba1fc4cf29a6c8a8e27497267790 /examples/simple.scm
parent0cac73fdec11776dd5a770554c581f808ee0721a (diff)
Fix indenting.
Diffstat (limited to 'examples/simple.scm')
-rw-r--r--examples/simple.scm2
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.