diff options
author | David Thompson <dthompson2@worcester.edu> | 2020-11-16 17:23:16 -0500 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2020-11-16 17:27:10 -0500 |
commit | ba0c8932395a05187824ce2835eb33331967a45a (patch) | |
tree | 22eaafd293bf1212fb969125e2162740bebf46a3 /examples/audio.scm | |
parent | f2f23c968ccc3e16163ad561cb3395bd2e02f966 (diff) |
Remove scancode argument from key-press and key-release handlers.
Diffstat (limited to 'examples/audio.scm')
-rw-r--r-- | examples/audio.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/audio.scm b/examples/audio.scm index c9885a2..4ea697f 100644 --- a/examples/audio.scm +++ b/examples/audio.scm @@ -49,7 +49,7 @@ Q - quit") (draw-text status-message status-position)) (draw-text instructions instructions-position)) -(define (key-press key scancode modifiers repeat?) +(define (key-press key modifiers repeat?) (match key ('q (abort-game)) ('space (source-toggle music-source)) |