Fix HLE_HOOK_START in the interpreter.
This commit is contained in:
parent
e62bc44f15
commit
e15e30602c
|
@ -106,10 +106,20 @@ int Interpreter::SingleStepInner(void)
|
||||||
if (HLE::IsEnabled(flags))
|
if (HLE::IsEnabled(flags))
|
||||||
{
|
{
|
||||||
HLEFunction(function);
|
HLEFunction(function);
|
||||||
|
if (type == HLE::HLE_HOOK_START)
|
||||||
|
{
|
||||||
|
// Run the original.
|
||||||
|
function = 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
function = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
|
||||||
|
if (function == 0)
|
||||||
{
|
{
|
||||||
#ifdef USE_GDBSTUB
|
#ifdef USE_GDBSTUB
|
||||||
if (gdb_active() && gdb_bp_x(PC)) {
|
if (gdb_active() && gdb_bp_x(PC)) {
|
||||||
|
|
Loading…
Reference in New Issue