Returning false from an IPC_HLE method should not produce an INFO_LOG.

It's commonly used to delay replying to a message and is in no way an
error.
This commit is contained in:
comex 2013-09-05 13:00:25 -04:00
parent ef1d33647f
commit 39a524f47d
1 changed files with 0 additions and 11 deletions

View File

@ -548,17 +548,6 @@ void ExecuteCommand(u32 _Address)
// Generate a reply to the IPC command
EnqReply(_Address, reply_delay);
}
else
{
if (pDevice)
{
INFO_LOG(WII_IPC_HLE, "<<-- Reply Failed to %s IPC Request %i @ 0x%08x ", pDevice->GetDeviceName().c_str(), Command, _Address);
}
else
{
INFO_LOG(WII_IPC_HLE, "<<-- Reply Failed to Unknown (%08x) IPC Request %i @ 0x%08x ", DeviceID, Command, _Address);
}
}
}
// Happens AS SOON AS IPC gets a new pointer!