Moved Classic Controller keys (H was already taken)
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1324 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
6a74afd02d
commit
948046ef4c
|
@ -585,13 +585,13 @@ void FillReportClassicExtension(wm_classic_extension& _ext)
|
|||
if(GetAsyncKeyState('K')) // down
|
||||
Ly = 0x1c;
|
||||
|
||||
if(GetAsyncKeyState('F')) // right analog left
|
||||
if(GetAsyncKeyState('D')) // right analog left
|
||||
Rx = 0x28;
|
||||
if(GetAsyncKeyState('T')) // up
|
||||
if(GetAsyncKeyState('R')) // up
|
||||
Ry = 0xd8;
|
||||
if(GetAsyncKeyState('H')) // right
|
||||
if(GetAsyncKeyState('G')) // right
|
||||
Rx = 0xd8;
|
||||
if(GetAsyncKeyState('G')) // down
|
||||
if(GetAsyncKeyState('F')) // down
|
||||
Ry = 0x28;
|
||||
|
||||
_ext.Lx = (Lx >> 2);
|
||||
|
|
Loading…
Reference in New Issue