mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Now "Wiimote/Nunchunk Shake" on Keyboard works(for Win only).
Just press the "Shake" key. The shake involves all the three axes: X, Y, Z. So when you press the shake key, you are actually shaking not only up-down, left-right, and forward-backward at the same time. I did this becuse different games may require different directional shake, no need to seperate them to 3 keys I think. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4624 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -296,7 +296,7 @@ void UpdateEeprom()
|
||||
g_wm.cal_zero.y = g_Eeprom[23];
|
||||
g_wm.cal_zero.z = g_Eeprom[24];
|
||||
g_wm.cal_g.x = g_Eeprom[26] - g_Eeprom[22];
|
||||
g_wm.cal_g.y = g_Eeprom[27] - g_Eeprom[24];
|
||||
g_wm.cal_g.y = g_Eeprom[27] - g_Eeprom[23];
|
||||
g_wm.cal_g.z = g_Eeprom[28] - g_Eeprom[24];
|
||||
|
||||
INFO_LOG(WIIMOTE, "UpdateEeprom: %i %i %i",
|
||||
|
Reference in New Issue
Block a user