MicroVU: Fix branch type detection

amendment of 589aba
This commit is contained in:
Ty Lamontagne 2021-09-25 12:12:04 -04:00 committed by refractionpcsx2
parent 5a9aeb165f
commit aef731fdbe
1 changed files with 1 additions and 1 deletions

View File

@ -602,7 +602,7 @@ __ri int mVUbranchCheck(mV)
{
// First branch is not conditional so we know what the link will be
// So we can let the existing evil block do its thing! We know where to get the addr :)
if (branchType <= 2 && branchType >= 9)
if (branchType <= 2 || branchType >= 9)
{
mVUregs.blockType = 2;
} // Else it is conditional, so we need to do some nasty processing later in microVU_Branch.inl