diff options
| author | Ben Harris <bjh21@bjh21.me.uk> | 2022-10-24 22:37:30 +0100 |
|---|---|---|
| committer | Ben Harris <bjh21@bjh21.me.uk> | 2022-10-24 22:37:30 +0100 |
| commit | 0db5fb525bb58056caf9303d2ac159fc51c04e04 (patch) | |
| tree | 3c5c8e4f07ec9403732c92f285a9727220b0d89a /emcc.c | |
| parent | 9698732d659451d5f5216834f7eea0eba46a623e (diff) | |
| download | puzzles-0db5fb525bb58056caf9303d2ac159fc51c04e04.zip puzzles-0db5fb525bb58056caf9303d2ac159fc51c04e04.tar.gz puzzles-0db5fb525bb58056caf9303d2ac159fc51c04e04.tar.bz2 puzzles-0db5fb525bb58056caf9303d2ac159fc51c04e04.tar.xz | |
js: Remove the charCode argument from key()
It hasn't been used in a while.
Diffstat (limited to 'emcc.c')
| -rw-r--r-- | emcc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |