summaryrefslogtreecommitdiff
path: root/examples/animation.scm
diff options
context:
space:
mode:
Diffstat (limited to 'examples/animation.scm')
-rw-r--r--examples/animation.scm3
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/animation.scm b/examples/animation.scm
index df713c5..b27d07f 100644
--- a/examples/animation.scm
+++ b/examples/animation.scm
@@ -2,7 +2,6 @@
(2d game-loop)
(2d window)
(2d vector)
- (2d input)
(2d helpers))
(init-2d)
@@ -12,7 +11,7 @@
(define sprite #f)
(define (key-down key mod unicode)
- (cond ((any-equal? key (keycode escape) (keycode q))
+ (cond ((any-equal? key 'escape 'q)
(close-window)
(quit))))