From aef731fdbeb7b9f28060fc7e4fef052470b049cc Mon Sep 17 00:00:00 2001 From: Ty Lamontagne Date: Sat, 25 Sep 2021 12:12:04 -0400 Subject: [PATCH] MicroVU: Fix branch type detection amendment of 589aba --- pcsx2/x86/microVU_Analyze.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/x86/microVU_Analyze.inl b/pcsx2/x86/microVU_Analyze.inl index 7d998ba97a..11392b452a 100644 --- a/pcsx2/x86/microVU_Analyze.inl +++ b/pcsx2/x86/microVU_Analyze.inl @@ -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