Merge pull request #440 from Azimer/Fix_Interpreter

Revert DoSomething from bool to BOOL #2
This commit is contained in:
zilmar 2015-05-06 09:04:30 +10:00
commit 38b7741f0c
1 changed files with 2 additions and 2 deletions

View File

@ -268,7 +268,7 @@ void CInterpreterCPU::ExecuteCPU()
OPCODE & Opcode = R4300iOp::m_Opcode;
DWORD & JumpToLocation = R4300iOp::m_JumpToLocation;
bool & TestTimer = R4300iOp::m_TestTimer;
const bool & bDoSomething= g_SystemEvents->DoSomething();
const BOOL & bDoSomething= g_SystemEvents->DoSomething();
DWORD CountPerOp = g_System->CountPerOp();
int & NextTimer = *g_NextTimer;
@ -354,7 +354,7 @@ void CInterpreterCPU::ExecuteOps(int Cycles)
OPCODE & Opcode = R4300iOp::m_Opcode;
DWORD & JumpToLocation = R4300iOp::m_JumpToLocation;
bool & TestTimer = R4300iOp::m_TestTimer;
const bool & DoSomething = g_SystemEvents->DoSomething();
const BOOL & DoSomething = g_SystemEvents->DoSomething();
DWORD CountPerOp = g_System->CountPerOp();
__try