Change default wiimote emulation key settings to lowercase in linux

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4969 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Glenn Rice
2010-01-27 13:46:30 +00:00
parent feea557019
commit 10192a9a4b
2 changed files with 7 additions and 7 deletions

View File

@ -308,7 +308,7 @@ bool IsKey(int Key)
{
Ret = GetAsyncKeyState(MapKey); // Keyboard (Windows)
#else
if (MapKey < 256 || (MapKey >= 0xff50 && MapKey <= 0xff54))
if (MapKey < 256 || MapKey >= 0xf000)
{
Ret = KeyStatus[Key]; // Keyboard (Linux)
#endif