Skip to content

Commit

Permalink
Add missing check.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpd002 committed Jul 31, 2024
1 parent c12276d commit 1110c6e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Source/ee/VuExecutor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,11 @@ void CVuExecutor::PartitionFunction(uint32 startAddress)
endAddress = address + 0xC;
break;
}
else if(upperOp & (VUShared::VU_UPPEROP_BIT_D | VUShared::VU_UPPEROP_BIT_T))
{
endAddress = address + 0x04;
break;
}
else if(branchType == MIPS_BRANCH_NORMAL)
{
branchAddress = m_context.m_pArch->GetInstructionEffectiveAddress(&m_context, addrLo, lowerOp);
Expand Down

0 comments on commit 1110c6e

Please sign in to comment.