I'm currently playing Link's Crossbow training on Dolphin, it works like a dream :p
But i like to have Fire on the left mouse button, so:
LMB = B
RMB = A
where can i change this?
I also tried switching the mousebuttons in Windows, doesn't work in dolphin.
edit:
forget about my post, just figure it out:
in Plugin_wiimote/emulated wiimote/fillreport.cpp
change:
to
and rebuild the wiimote plugin only. thats it
But i like to have Fire on the left mouse button, so:
LMB = B
RMB = A
where can i change this?
I also tried switching the mousebuttons in Windows, doesn't work in dolphin.
edit:
forget about my post, just figure it out:
in Plugin_wiimote/emulated wiimote/fillreport.cpp
change:
Code:
#ifdef _WIN32
if ((Key == EWM_SHAKE && GetAsyncKeyState(VK_MBUTTON))
|| (Key == EWM_A && GetAsyncKeyState(VK_LBUTTON))
|| (Key == EWM_B && GetAsyncKeyState(VK_RBUTTON)))
Ret = 1;
#endif
to
Code:
#ifdef _WIN32
if ((Key == EWM_SHAKE && GetAsyncKeyState(VK_MBUTTON))
|| (Key == EWM_A && GetAsyncKeyState(VK_RBUTTON))
|| (Key == EWM_B && GetAsyncKeyState(VK_LBUTTON)))
Ret = 1;
#endif
and rebuild the wiimote plugin only. thats it
