mirror of https://github.com/PCSX2/pcsx2.git
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:
parent
a2e5c497aa
commit
0046b0f1a6
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue