Revert DoSomething from bool to BOOL #2

This fixes the interpreter
This commit is contained in:
Azimer 2015-05-05 11:46:25 -05:00
parent 9aa9061f07
commit fe855ad5da
1 changed files with 1 additions and 1 deletions

View File

@ -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;