Core: fix bug in CX86Ops::CallFunc when not logging opcodes

This commit is contained in:
zilmar 2022-11-24 09:10:15 +10:30
parent e3aa2514c1
commit 79d749e33d
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ void CX86Ops::CallFunc(uint32_t FunctPtr, const char * FunctName)
} }
else else
{ {
call(asmjit::x86::dword_ptr((uint64_t)FunctPtr)); call((uint64_t)FunctPtr);
} }
} }