mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-21 03:54:57 +00:00
CachedInterpreter: fix HLEFunction argument
This commit is contained in:
parent
f94cd57a70
commit
1bd87f5a79
1 changed files with 1 additions and 1 deletions
|
@ -215,7 +215,7 @@ void CachedInterpreter::Jit(u32 address)
|
|||
if (HLE::IsEnabled(flags))
|
||||
{
|
||||
m_code.emplace_back(WritePC, ops[i].address);
|
||||
m_code.emplace_back(Interpreter::HLEFunction, ops[i].inst);
|
||||
m_code.emplace_back(Interpreter::HLEFunction, function);
|
||||
if (type == HLE::HLE_HOOK_REPLACE)
|
||||
{
|
||||
m_code.emplace_back(EndBlock, js.downcountAmount);
|
||||
|
|
Loading…
Add table
Reference in a new issue