From 589aba37131281dd4fde202232ca2dda7f35b407 Mon Sep 17 00:00:00 2001 From: Ty Lamontagne Date: Mon, 6 Sep 2021 11:32:31 -0400 Subject: [PATCH] [MicroVU] Revert "bla" This reverts commit 6800753f09f7302f4c8a846c2fe6d652af4fd907. --- pcsx2/x86/microVU_Analyze.inl | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/pcsx2/x86/microVU_Analyze.inl b/pcsx2/x86/microVU_Analyze.inl index 22d00e7fca..5aee624fbe 100644 --- a/pcsx2/x86/microVU_Analyze.inl +++ b/pcsx2/x86/microVU_Analyze.inl @@ -646,21 +646,16 @@ __ri int mVUbranchCheck(mV) if (mVUlow.branch == 2 || mVUlow.branch == 10) // Needs linking, we can only guess this if the next is not conditional { - if (branchType <= 2 || branchType >= 9) // 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 :) + // 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) { - DevCon.Warning("yo"); - DevCon.Warning("yo"); - DevCon.Warning("yo"); - DevCon.Warning("yo"); - DevCon.Warning("yo"); - DevCon.Warning("----"); - mVUregs.blockType = 2; - } //Else it is conditional, so we need to do some nasty processing later in microVU_Branch.inl + } // Else it is conditional, so we need to do some nasty processing later in microVU_Branch.inl } else { - mVUregs.blockType = 2; //Second branch doesn't need linking, so can let it run its evil block course (MGS2 for testing) + mVUregs.blockType = 2; // Second branch doesn't need linking, so can let it run its evil block course (MGS2 for testing) } mVUregs.needExactMatch |= 7; // This might not be necessary, but w/e...