mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 13:49:53 -06:00
Merge pull request #1052 from Sonicadvance1/fix-ppcAnalyst-return
Fix the return value of PPCAnalyst.
This commit is contained in:
@ -676,12 +676,12 @@ u32 PPCAnalyzer::Analyze(u32 address, CodeBlock *block, CodeBuffer *buffer, u32
|
|||||||
|
|
||||||
if (!follow)
|
if (!follow)
|
||||||
{
|
{
|
||||||
|
address += 4;
|
||||||
if (!conditional_continue && opinfo->flags & FL_ENDBLOCK) //right now we stop early
|
if (!conditional_continue && opinfo->flags & FL_ENDBLOCK) //right now we stop early
|
||||||
{
|
{
|
||||||
found_exit = true;
|
found_exit = true;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
address += 4;
|
|
||||||
}
|
}
|
||||||
// XXX: We don't support inlining yet.
|
// XXX: We don't support inlining yet.
|
||||||
#if 0
|
#if 0
|
||||||
|
Reference in New Issue
Block a user