mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Wiimote: Show the decrypted Nunchuck calibration values in the log when a real Wiimote and Nunchuck is used. Fixed an earlier bug that made the neutral emulated nunchuck accelerometer values zero, now they are back to 0x80,0x80,0xb3.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2104 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -276,11 +276,14 @@ void Initialize()
|
||||
LoadRecordedMovements();
|
||||
|
||||
// Set default recording values
|
||||
g_RecordingPlaying[0] = -1; g_RecordingPlaying[1] = -1;
|
||||
g_RecordingCounter[0] = 0; g_RecordingCounter[1] = 0;
|
||||
g_RecordingPoint[0] = 0; g_RecordingPoint[1] = 0;
|
||||
g_RecordingStart[0] = 0; g_RecordingStart[1] = 0;
|
||||
g_RecordingCurrentTime[0] = 0; g_RecordingCurrentTime[1] = 0;
|
||||
for (int i = 0; i < 3; i++)
|
||||
{
|
||||
g_RecordingPlaying[i] = -1;
|
||||
g_RecordingCounter[i] = 0;
|
||||
g_RecordingPoint[i] = 0;
|
||||
g_RecordingStart[i] = 0;
|
||||
g_RecordingCurrentTime[i] = 0;
|
||||
}
|
||||
|
||||
// I forgot what these were for?
|
||||
// g_RegExt[0xfd] = 0x1e;
|
||||
|
Reference in New Issue
Block a user