Someone changed this to a u32... it's definitely a s32 :)

This commit is contained in:
Matthew Parlane 2012-12-23 23:59:10 +13:00
parent 3aa9901618
commit 589222857f
1 changed files with 1 additions and 1 deletions

View File

@ -321,7 +321,7 @@ void ExecuteCommand(u32 _Address)
bool CmdSuccess = false;
ECommandType Command = static_cast<ECommandType>(Memory::Read_U32(_Address));
volatile u32 DeviceID = Memory::Read_U32(_Address + 8);
volatile s32 DeviceID = Memory::Read_U32(_Address + 8);
IWII_IPC_HLE_Device* pDevice = (DeviceID >= 0 && DeviceID < IPC_MAX_FDS) ? g_FdMap[DeviceID] : NULL;