Skip to content

Commit

Permalink
TEMP: Add idle loop skip.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpd002 committed Jul 15, 2024
1 parent 6a6ff95 commit 1e2992a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/ee/EeBasicBlock.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

void CEeBasicBlock::CompileEpilog(CMipsJitter* jitter, bool loopsOnItself)
{
if(IsIdleLoopBlock())
if(IsIdleLoopBlock() || (m_begin == 0x0053D318))
{
jitter->PushCst(MIPS_EXCEPTION_IDLE);
jitter->PullRel(offsetof(CMIPS, m_State.nHasException));
Expand Down

0 comments on commit 1e2992a

Please sign in to comment.