From 1f67f63ed5bf3d1365a008013a77e10cf4413f48 Mon Sep 17 00:00:00 2001 From: "Jake.Stine" Date: Thu, 14 May 2009 19:40:54 +0000 Subject: [PATCH] Removed the microVU enabler define (oops >_<), and removed some SPU2 counters message since the code in question is behaving as intended. git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1181 96395faa-99c1-11dd-bbfe-3dabce05a288 --- common/include/Pcsx2Config.h | 4 ++-- pcsx2/IopDma.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/common/include/Pcsx2Config.h b/common/include/Pcsx2Config.h index df3c3eff2b..d26587a84b 100644 --- a/common/include/Pcsx2Config.h +++ b/common/include/Pcsx2Config.h @@ -44,8 +44,8 @@ extern SessionOverrideFlags g_Session; ////////////////////////////////////////////////////////////////////////// // Pcsx2 User Configuration Options! -#define PCSX2_MICROVU // Use Micro VU recs instead of Zero VU Recs -#define PCSX2_MICROVU_ // Fully enable Micro VU recs (temporary option for now) +//#define PCSX2_MICROVU // Use Micro VU recs instead of Zero VU Recs +//#define PCSX2_MICROVU_ // Fully enable Micro VU recs (temporary option for now) #define PCSX2_GSMULTITHREAD 1 // uses multi-threaded gs #define PCSX2_EEREC 0x10 #define PCSX2_VU0REC 0x20 diff --git a/pcsx2/IopDma.cpp b/pcsx2/IopDma.cpp index 7138ca8ccf..1e9231a99d 100644 --- a/pcsx2/IopDma.cpp +++ b/pcsx2/IopDma.cpp @@ -57,7 +57,7 @@ static void __fastcall psxDmaGeneric(u32 madr, u32 bcr, u32 chcr, u32 spuCore, _ if((g_psxNextBranchCycle - psxNextsCounter) > (u32)psxNextCounter) { - DevCon::Notice("SPU2async Setting new counter branch, old %x new %x ((%x - %x = %x) > %x delta)", params g_psxNextBranchCycle, psxNextsCounter + psxNextCounter, g_psxNextBranchCycle, psxNextsCounter, (g_psxNextBranchCycle - psxNextsCounter), psxNextCounter); + //DevCon::Notice("SPU2async Setting new counter branch, old %x new %x ((%x - %x = %x) > %x delta)", params g_psxNextBranchCycle, psxNextsCounter + psxNextCounter, g_psxNextBranchCycle, psxNextsCounter, (g_psxNextBranchCycle - psxNextsCounter), psxNextCounter); g_psxNextBranchCycle = psxNextsCounter + psxNextCounter; } }