[Project64] Fix android build issue

This commit is contained in:
zilmar 2018-03-26 21:53:00 +11:00
parent 86b1e25ddd
commit fb8f5557a9
1 changed files with 1 additions and 1 deletions

View File

@ -9066,7 +9066,7 @@ void CX86RecompilerOps::FoundMemoryBreakpoint()
{
ClearCachedInstructionInfo();
MoveConstToVariable((m_NextInstruction == JUMP || m_NextInstruction == DELAY_SLOT) ? 1 : 0, &memory_write_in_delayslot, "memory_write_in_delayslot");
Call_Direct(x86MemoryBreakpoint, "x86MemoryBreakpoint");
Call_Direct((void *)x86MemoryBreakpoint, "x86MemoryBreakpoint");
ExitCodeBlock();
m_NextInstruction = END_BLOCK;
}