diff options
author | Eugene Sandulenko | 2011-11-17 14:22:48 -0800 |
---|---|---|
committer | Eugene Sandulenko | 2011-11-17 14:22:48 -0800 |
commit | 5420ad7619a000313381bfdca7cc768984192d49 (patch) | |
tree | 6b6c356283dc6b22353c54a0425843e072a8d72c /common | |
parent | e79dda07f469626d9f2c06450a13625c52e47329 (diff) | |
parent | b708d6de79e2893cddf95d72864d4487a483e0c1 (diff) | |
download | scummvm-rg350-5420ad7619a000313381bfdca7cc768984192d49.tar.gz scummvm-rg350-5420ad7619a000313381bfdca7cc768984192d49.tar.bz2 scummvm-rg350-5420ad7619a000313381bfdca7cc768984192d49.zip |
Merge pull request #114 from tsoliman/keymapper2
KEYMAPPER: Keymapper improvements 2
Diffstat (limited to 'common')
-rw-r--r-- | common/keyboard.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/common/keyboard.h b/common/keyboard.h index bdd0a2d4af..ead6ed427b 100644 --- a/common/keyboard.h +++ b/common/keyboard.h @@ -292,7 +292,8 @@ struct KeyState { } bool operator==(const KeyState &x) const { - return keycode == x.keycode && ascii == x.ascii && flags == x.flags; + // intentionally ignore ascii + return keycode == x.keycode && flags == x.flags; } }; |