Merge pull request #440 from Azimer/Fix_Interpreter
Revert DoSomething from bool to BOOL #2
This commit is contained in:
commit
38b7741f0c
|
@ -268,7 +268,7 @@ void CInterpreterCPU::ExecuteCPU()
|
||||||
OPCODE & Opcode = R4300iOp::m_Opcode;
|
OPCODE & Opcode = R4300iOp::m_Opcode;
|
||||||
DWORD & JumpToLocation = R4300iOp::m_JumpToLocation;
|
DWORD & JumpToLocation = R4300iOp::m_JumpToLocation;
|
||||||
bool & TestTimer = R4300iOp::m_TestTimer;
|
bool & TestTimer = R4300iOp::m_TestTimer;
|
||||||
const bool & bDoSomething= g_SystemEvents->DoSomething();
|
const BOOL & bDoSomething= g_SystemEvents->DoSomething();
|
||||||
DWORD CountPerOp = g_System->CountPerOp();
|
DWORD CountPerOp = g_System->CountPerOp();
|
||||||
int & NextTimer = *g_NextTimer;
|
int & NextTimer = *g_NextTimer;
|
||||||
|
|
||||||
|
@ -354,7 +354,7 @@ void CInterpreterCPU::ExecuteOps(int Cycles)
|
||||||
OPCODE & Opcode = R4300iOp::m_Opcode;
|
OPCODE & Opcode = R4300iOp::m_Opcode;
|
||||||
DWORD & JumpToLocation = R4300iOp::m_JumpToLocation;
|
DWORD & JumpToLocation = R4300iOp::m_JumpToLocation;
|
||||||
bool & TestTimer = R4300iOp::m_TestTimer;
|
bool & TestTimer = R4300iOp::m_TestTimer;
|
||||||
const bool & DoSomething = g_SystemEvents->DoSomething();
|
const BOOL & DoSomething = g_SystemEvents->DoSomething();
|
||||||
DWORD CountPerOp = g_System->CountPerOp();
|
DWORD CountPerOp = g_System->CountPerOp();
|
||||||
|
|
||||||
__try
|
__try
|
||||||
|
|
Loading…
Reference in New Issue