From 0db5fb525bb58056caf9303d2ac159fc51c04e04 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Mon, 24 Oct 2022 22:37:30 +0100 Subject: js: Remove the charCode argument from key() It hasn't been used in a while. --- emcc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'emcc.c') diff --git a/emcc.c b/emcc.c index 77e7ded..33f7608 100644 --- a/emcc.c +++ b/emcc.c @@ -262,7 +262,7 @@ void mousemove(int x, int y, int buttons) /* * Keyboard handler called from JS. */ -void key(int keycode, int charcode, const char *key, const char *chr, +void key(int keycode, const char *key, const char *chr, bool shift, bool ctrl) { int keyevent = -1; -- cgit v1.1