Core: Remove unused parameters in Movie

This commit is contained in:
Lioncash
2014-08-02 15:03:34 -04:00
parent da2833c0e6
commit 41af9a81a5
3 changed files with 6 additions and 6 deletions

View File

@ -656,7 +656,7 @@ void RecordInput(GCPadStatus* PadStatus, int controllerID)
g_totalBytes = g_currentByte;
}
void CheckWiimoteStatus(int wiimote, u8 *data, const WiimoteEmu::ReportFeatures& rptf, int irMode)
void CheckWiimoteStatus(int wiimote, u8 *data, const WiimoteEmu::ReportFeatures& rptf)
{
u8* const coreData = rptf.core?(data+rptf.core):nullptr;
u8* const accelData = rptf.accel?(data+rptf.accel):nullptr;
@ -1034,7 +1034,7 @@ void PlayController(GCPadStatus* PadStatus, int controllerID)
CheckInputEnd();
}
bool PlayWiimote(int wiimote, u8 *data, const WiimoteEmu::ReportFeatures& rptf, int irMode)
bool PlayWiimote(int wiimote, u8 *data, const WiimoteEmu::ReportFeatures& rptf)
{
if (!IsPlayingInput() || !IsUsingWiimote(wiimote) || tmpInput == nullptr)
return false;