summaryrefslogtreecommitdiff
path: root/examples/coroutine.scm
diff options
context:
space:
mode:
Diffstat (limited to 'examples/coroutine.scm')
-rw-r--r--examples/coroutine.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/coroutine.scm b/examples/coroutine.scm
index 98dec16..7b4a1e6 100644
--- a/examples/coroutine.scm
+++ b/examples/coroutine.scm
@@ -38,9 +38,9 @@
sprite
(vector2 (random window-width)
(random window-height)))
- (wait game-agenda 15)
+ (wait 15)
(set-sprite-rotation! sprite (random 360))
- (wait game-agenda 15)))
+ (wait 15)))
(add-hook! draw-hook (lambda (dt alpha) (draw-sprite sprite)))