From 3568b5cd1aceb79544a29c29c16f2a95f61b8213 Mon Sep 17 00:00:00 2001 From: cottonvibes Date: Sun, 7 Dec 2008 01:12:39 +0000 Subject: [PATCH] something drk||Raziel found that I forgot to commit. not very important, only effects non-MTGS/DC modes. git-svn-id: http://pcsx2-playground.googlecode.com/svn/trunk@397 a6443dda-0b58-4228-96e9-037be469359c --- pcsx2/x86/iVUmicro.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pcsx2/x86/iVUmicro.c b/pcsx2/x86/iVUmicro.c index cf098839de..820948b55e 100644 --- a/pcsx2/x86/iVUmicro.c +++ b/pcsx2/x86/iVUmicro.c @@ -5655,10 +5655,14 @@ void recVUMI_XGKICK( VURegs *VU, int info ) #endif } else { - FreezeMMXRegs(1); + // GSgifTransfer1 is recompiled, but freezeRegs() are not; + // so if we need to freeze the regs we need to recompile it :p + // since there were no-problems with the not-working code before, + // I'm guessing freezeregs aren't even needed. + //FreezeMMXRegs(1); //FreezeXMMRegs(1); CALLFunc((uptr)GSgifTransfer1); - FreezeMMXRegs(0); + //FreezeMMXRegs(0); //FreezeXMMRegs(0); } }