From e0e93fc3a632c0a7cb2b6790367ae46e9cbea360 Mon Sep 17 00:00:00 2001 From: Sepalani Date: Wed, 23 Nov 2016 00:12:12 +0000 Subject: [PATCH] [HLE] Interpreter: Fixes invalid logs --- Source/Core/Core/PowerPC/Interpreter/Interpreter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/PowerPC/Interpreter/Interpreter.cpp b/Source/Core/Core/PowerPC/Interpreter/Interpreter.cpp index 80396fd6f7..5cacf63a4f 100644 --- a/Source/Core/Core/PowerPC/Interpreter/Interpreter.cpp +++ b/Source/Core/Core/PowerPC/Interpreter/Interpreter.cpp @@ -100,7 +100,7 @@ static void Trace(UGeckoInstruction& inst) int Interpreter::SingleStepInner() { static UGeckoInstruction instCode; - u32 function = HLE::GetFunctionIndex(PC); + u32 function = HLE::GetFirstFunctionIndex(PC); if (function != 0) { int type = HLE::GetFunctionTypeByIndex(function);