Merge pull request #1132 from cxd4/g_-to-m_

Fix unresolved g_RecompPos to name m_RecompPos.
This commit is contained in:
zilmar 2016-06-28 15:40:19 +10:00 committed by GitHub
commit 46c6a6b0df
1 changed files with 1 additions and 1 deletions

View File

@ -216,7 +216,7 @@ void CX86Ops::Call_Direct(void * FunctAddress, const char * FunctName)
{
CPU_Message(" call offset %s", FunctName);
AddCode8(0xE8);
AddCode32((uint32_t)FunctAddress - (uint32_t)*g_RecompPos - 4);
AddCode32((uint32_t)FunctAddress - (uint32_t)*m_RecompPos - 4);
}
void CX86Ops::Call_Indirect(void * FunctAddress, const char * FunctName)