aboutsummaryrefslogtreecommitdiff
path: root/demo/shmup.scm
diff options
context:
space:
mode:
Diffstat (limited to 'demo/shmup.scm')
-rw-r--r--demo/shmup.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/demo/shmup.scm b/demo/shmup.scm
index e9fec5e..97779a8 100644
--- a/demo/shmup.scm
+++ b/demo/shmup.scm
@@ -150,7 +150,7 @@
(lambda (e) (or (eq? (entity-type e) 'player) (in-bounds? e))))))
render: (lambda (game)
- (for-each (lambda (e) (draw-shmup-entity (game-renderer game) e))
+ (for-each (cut draw-shmup-entity (game-renderer game) <>)
(scene-entities (game-scene game))))))
(game-run! *game*)