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
This commit is contained in:
ramapcsx2 2011-08-29 11:18:46 +00:00
parent a2e5c497aa
commit 0046b0f1a6
1 changed files with 3 additions and 6 deletions

View File

@ -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<page,false>(mem & ~0x03);