mirror of
https://github.com/Oibaf66/frodo-wii.git
synced 2024-11-13 07:05:12 +01:00
Correct shifted key bindings
This commit is contained in:
parent
049a3846b4
commit
aa7c41770b
@ -6,6 +6,8 @@
|
||||
TODO: Crash on + in "Other" menu
|
||||
|
||||
version 8:
|
||||
* Correct binding of shifted keys (thanks to Bob Forgan)
|
||||
|
||||
* Fix binding keys without the classic controller (plus etc were missing)
|
||||
|
||||
-- Simon Kagstrom <simon.kagstrom@gmail.com>
|
||||
|
@ -260,7 +260,7 @@ int VirtualKeyboard::get_key()
|
||||
if (key == NULL)
|
||||
return -2;
|
||||
|
||||
if (key->is_shift)
|
||||
if (this->shift_on)
|
||||
return key->kc | 0x80;
|
||||
return key->kc;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user