From c1c868d9b6ee61002c7ccb33fbc6a15c5b090e6a Mon Sep 17 00:00:00 2001 From: Gene Pasquet Date: Sun, 12 Apr 2026 15:57:45 +0100 Subject: Enrich entities pipelining to provide scene context to processors --- demo/shmup.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'demo/shmup.scm') diff --git a/demo/shmup.scm b/demo/shmup.scm index f4897ae..315069c 100644 --- a/demo/shmup.scm +++ b/demo/shmup.scm @@ -149,7 +149,7 @@ (game-scene-set! game (chain (update-scene scene entities: all) (scene-map-entities _ - (lambda (e) (if (eq? (entity-type e) 'player) e (move-projectile e)))) + (lambda (scene_ e) (if (eq? (entity-type e) 'player) e (move-projectile e)))) (scene-remove-dead _) (scene-filter-entities _ (lambda (e) (or (eq? (entity-type e) 'player) (in-bounds? e)))))))))) -- cgit v1.2.3