From 0046b0f1a6a5df74ec2bad922c539d3c63b6ad81 Mon Sep 17 00:00:00 2001 From: ramapcsx2 Date: Mon, 29 Aug 2011 11:18:46 +0000 Subject: [PATCH] Removed the silly log check and fixed the revision numbers from last commit. git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4883 96395faa-99c1-11dd-bbfe-3dabce05a288 --- pcsx2/HwWrite.cpp | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/pcsx2/HwWrite.cpp b/pcsx2/HwWrite.cpp index 4d7d4acce9..dcf9281a8d 100644 --- a/pcsx2/HwWrite.cpp +++ b/pcsx2/HwWrite.cpp @@ -239,13 +239,10 @@ void __fastcall _hwWrite8(u32 mem, u8 value) } return; } - icase(DMAC_STAT) // Virtual on Marz sound effect hang. Broke in r3705 (handled in r3704 HwWrite.cpp line 352) + icase(DMAC_STAT) // Virtual on Marz sound effect hang. Broke in r3704 (handled in r3703 HwWrite.cpp line 352) { - static bool warnedOnce = false; - if (!warnedOnce) - DevCon.Warning ( "8bit DMAC_STAT write, ignoring" ); - warnedOnce = true; - return; // r3704 ignored 8 bit DMAC_STAT writes. Is that okay? (rama) + DevCon.Warning ( "8bit DMAC_STAT write, ignoring" ); + return; // r3703 ignored 8 bit DMAC_STAT writes. Is that okay? (rama) } u32 merged = _hwRead32(mem & ~0x03);