From 948046ef4ca09f2d9715b72861f3ad38ab44e822 Mon Sep 17 00:00:00 2001 From: John Peterson Date: Fri, 28 Nov 2008 21:18:26 +0000 Subject: [PATCH] Moved Classic Controller keys (H was already taken) git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1324 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Plugins/Plugin_Wiimote/Src/FillReport.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/Plugins/Plugin_Wiimote/Src/FillReport.cpp b/Source/Plugins/Plugin_Wiimote/Src/FillReport.cpp index 645aee9682..db6f5e5843 100644 --- a/Source/Plugins/Plugin_Wiimote/Src/FillReport.cpp +++ b/Source/Plugins/Plugin_Wiimote/Src/FillReport.cpp @@ -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);