changeset 18:6f9d8e65752c

Missed one char -> int() cast.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 04 Jul 2018 10:05:42 +0300
parents 480ada584d8a
children 1fcc61b882f7
files events.pde
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/events.pde	Wed Jul 04 10:03:14 2018 +0300
+++ b/events.pde	Wed Jul 04 10:05:42 2018 +0300
@@ -25,7 +25,7 @@
 
     //send to the indirect key handling
     //so commands can be invoked elsewhere too
-    command(key);
+    command(int(key));
 }
 
 void keyReleased() {