Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #427 from magumagu/interpreter-hle
Interpreter: correctly support HLE functions.
  • Loading branch information
delroth committed May 28, 2014
2 parents 21cf8fe + 98dd99a commit 5abd518
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Core/PowerPC/Interpreter/Interpreter.cpp
Expand Up @@ -92,7 +92,7 @@ void Trace( UGeckoInstruction &instCode )
int Interpreter::SingleStepInner(void)
{
static UGeckoInstruction instCode;
u32 function = m_EndBlock ? HLE::GetFunctionIndex(PC) : 0; // Check for HLE functions after branches
u32 function = HLE::GetFunctionIndex(PC);
if (function != 0)
{
int type = HLE::GetFunctionTypeByIndex(function);
Expand Down

0 comments on commit 5abd518

Please sign in to comment.