0 seems to be ok

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1383 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
nakeee 2008-12-03 06:42:21 +00:00
parent 27dc595d7c
commit eecbfa3445

View File

@ -422,7 +422,9 @@ void ExecuteCommand(u32 _Address)
}
else
{
LOG(WII_IPC_HLE, "IOP: Reply to unknown device ID (DeviceID=%i)", DeviceID);
// 0 is ok, as it's used for devices that wasn't created yet
if (DeviceID != 0)
LOG(WII_IPC_HLE, "IOP: Reply to unknown device ID (DeviceID=%i)", DeviceID);
g_ReplyQueue.push(std::pair<u32, std::string>(_Address, "unknown"));
}
}