From 51def492c78d33ca704af36d6ab3632185258049 Mon Sep 17 00:00:00 2001 From: Sepalani Date: Wed, 23 Nov 2016 00:12:41 +0000 Subject: [PATCH] [HLE] CachedInterpreter: Fixes invalid logs --- .../Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp b/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp index 4bd0b57811..214ce53a51 100644 --- a/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp +++ b/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp @@ -205,7 +205,7 @@ void CachedInterpreter::Jit(u32 address) { js.downcountAmount += ops[i].opinfo->numCycles; - u32 function = HLE::GetFunctionIndex(ops[i].address); + u32 function = HLE::GetFirstFunctionIndex(ops[i].address); if (function != 0) { int type = HLE::GetFunctionTypeByIndex(function);