mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 21:30:19 -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:
@ -141,7 +141,7 @@ void SendReportCore(u16 _channelID)
|
||||
g_WiimoteInitialize.pWiimoteInput(_channelID, DataFrame, Offset);
|
||||
|
||||
// Debugging
|
||||
ReadDebugging(true, DataFrame);
|
||||
ReadDebugging(true, DataFrame, Offset);
|
||||
}
|
||||
|
||||
|
||||
@ -167,7 +167,7 @@ void SendReportCoreAccel(u16 _channelID)
|
||||
g_WiimoteInitialize.pWiimoteInput(_channelID, DataFrame, Offset);
|
||||
|
||||
// Debugging
|
||||
ReadDebugging(true, DataFrame);
|
||||
ReadDebugging(true, DataFrame, Offset);
|
||||
}
|
||||
|
||||
|
||||
@ -196,7 +196,7 @@ void SendReportCoreAccelIr12(u16 _channelID) {
|
||||
g_WiimoteInitialize.pWiimoteInput(_channelID, DataFrame, Offset);
|
||||
|
||||
// Debugging
|
||||
ReadDebugging(true, DataFrame);
|
||||
ReadDebugging(true, DataFrame, Offset);
|
||||
}
|
||||
|
||||
|
||||
@ -237,7 +237,7 @@ void SendReportCoreAccelExt16(u16 _channelID)
|
||||
g_WiimoteInitialize.pWiimoteInput(_channelID, DataFrame, Offset);
|
||||
|
||||
// Debugging
|
||||
ReadDebugging(true, DataFrame);
|
||||
ReadDebugging(true, DataFrame, Offset);
|
||||
}
|
||||
|
||||
|
||||
@ -277,7 +277,7 @@ void SendReportCoreAccelIr10Ext(u16 _channelID)
|
||||
g_WiimoteInitialize.pWiimoteInput(_channelID, DataFrame, Offset);
|
||||
|
||||
// Debugging
|
||||
ReadDebugging(true, DataFrame);
|
||||
ReadDebugging(true, DataFrame, Offset);
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user