mirror of
https://github.com/Oibaf66/frodo-wii.git
synced 2024-11-10 21:55:11 +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
|
TODO: Crash on + in "Other" menu
|
||||||
|
|
||||||
version 8:
|
version 8:
|
||||||
|
* Correct binding of shifted keys (thanks to Bob Forgan)
|
||||||
|
|
||||||
* Fix binding keys without the classic controller (plus etc were missing)
|
* Fix binding keys without the classic controller (plus etc were missing)
|
||||||
|
|
||||||
-- Simon Kagstrom <simon.kagstrom@gmail.com>
|
-- Simon Kagstrom <simon.kagstrom@gmail.com>
|
||||||
|
@ -260,7 +260,7 @@ int VirtualKeyboard::get_key()
|
|||||||
if (key == NULL)
|
if (key == NULL)
|
||||||
return -2;
|
return -2;
|
||||||
|
|
||||||
if (key->is_shift)
|
if (this->shift_on)
|
||||||
return key->kc | 0x80;
|
return key->kc | 0x80;
|
||||||
return key->kc;
|
return key->kc;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user