summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2013-10-02 18:14:52 -0400
committerDavid Thompson <dthompson2@worcester.edu>2013-10-02 18:23:54 -0400
commit7c205ba10bee7ce1db759d2325c14b60568c5e19 (patch)
treecccdc42c53c5a9808aa12b96611dccdc1d252124
parent3b1a74cbef13a4c718cb88ba19f87b4942577d44 (diff)
Fix broken examples due to a renamed image file. :(
Sorry to everyone that downloaded 0.1 and was annoyed!
-rw-r--r--examples/action.scm2
-rw-r--r--examples/coroutine.scm2
-rw-r--r--examples/scenes.scm2
3 files changed, 3 insertions, 3 deletions
diff --git a/examples/action.scm b/examples/action.scm
index c0d96b5..fa44c5e 100644
--- a/examples/action.scm
+++ b/examples/action.scm
@@ -6,7 +6,7 @@
(2d vector2))
(define (demo-sprite)
- (load-sprite "images/sprite.png"
+ (load-sprite "images/ghost.png"
#:position (vector2 320 240)))
(define (start sprite)
diff --git a/examples/coroutine.scm b/examples/coroutine.scm
index 7fc3c2b..3eac850 100644
--- a/examples/coroutine.scm
+++ b/examples/coroutine.scm
@@ -5,7 +5,7 @@
(2d vector2))
(define (demo-sprite)
- (load-sprite "images/sprite.png"
+ (load-sprite "images/ghost.png"
#:position (vector2 320 240)))
(define (start sprite)
diff --git a/examples/scenes.scm b/examples/scenes.scm
index 06441c7..534eb56 100644
--- a/examples/scenes.scm
+++ b/examples/scenes.scm
@@ -9,7 +9,7 @@
;;;
(define (make-sprite-1)
- (load-sprite "images/sprite.png"
+ (load-sprite "images/ghost.png"
#:position (vector2 320 240)))
(define (scene-1-key-press sprite key mod unicode)