Someone changed this to a u32... it's definitely a s32 :)
This commit is contained in:
parent
3aa9901618
commit
589222857f
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue