From a1a001a83764a838d43cf5a38ed4e3f26df3a5d5 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Tue, 6 Oct 2020 18:58:12 -0400 Subject: scene: Remove scancode arg from key press/release methods. --- examples/shmup/shmup.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/shmup/shmup.scm') diff --git a/examples/shmup/shmup.scm b/examples/shmup/shmup.scm index 135027b..b15ef7c 100644 --- a/examples/shmup/shmup.scm +++ b/examples/shmup/shmup.scm @@ -814,7 +814,7 @@ (resume (& shmup player)) (for-each resume (enemies shmup))) -(define-method (on-key-press (shmup ) key scancode modifiers repeat?) +(define-method (on-key-press (shmup ) key modifiers repeat?) (match (state shmup) ('play (match key @@ -835,7 +835,7 @@ (_ #f))) (_ #f))) -(define-method (on-key-release (shmup ) key scancode modifiers) +(define-method (on-key-release (shmup ) key modifiers) (match (state shmup) ('play (match key -- cgit v1.2.3