[HLE] Interpreter: Fixes invalid logs
This commit is contained in:
parent
4f9e5e1141
commit
e0e93fc3a6
|
@ -100,7 +100,7 @@ static void Trace(UGeckoInstruction& inst)
|
||||||
int Interpreter::SingleStepInner()
|
int Interpreter::SingleStepInner()
|
||||||
{
|
{
|
||||||
static UGeckoInstruction instCode;
|
static UGeckoInstruction instCode;
|
||||||
u32 function = HLE::GetFunctionIndex(PC);
|
u32 function = HLE::GetFirstFunctionIndex(PC);
|
||||||
if (function != 0)
|
if (function != 0)
|
||||||
{
|
{
|
||||||
int type = HLE::GetFunctionTypeByIndex(function);
|
int type = HLE::GetFunctionTypeByIndex(function);
|
||||||
|
|
Loading…
Reference in New Issue