mirror of https://github.com/PCSX2/pcsx2.git
SPU2-X: cleaned up the re-enabled debugging messages from r5400.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@5401 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
2e1b138219
commit
7e528d3f1f
|
@ -197,17 +197,14 @@ void V_Core::PlainDMAWrite(u16 *pMem, u32 size)
|
|||
// but it could be indicative of an emulation foopah elsewhere.
|
||||
|
||||
if(MsgToConsole()) {
|
||||
uptr pa = ((uptr)pMem)&7;
|
||||
uptr pm = TSA&0x7;
|
||||
|
||||
if( pa )
|
||||
if((uptr)pMem & 15)
|
||||
{
|
||||
ConLog("* SPU2 DMA Write > Missaligned SOURCE! Core: %d TSA: 0x%x TDA: 0x%x Size: 0x%x\n", Index, TSA, TDA, size);
|
||||
ConLog("* SPU2 DMA Write > Misaligned source. Core: %d IOP: %p TSA: 0x%x Size: 0x%x\n", Index, (void*)pMem, TSA, size);
|
||||
}
|
||||
|
||||
if( pm )
|
||||
if(TSA & 7)
|
||||
{
|
||||
ConLog("* SPU2 DMA Write > Missaligned TARGET! Core: %d TSA: 0x%x TDA: 0x%x Size: 0x%x\n", Index, TSA, TDA, size );
|
||||
ConLog("* SPU2 DMA Write > Misaligned target. Core: %d IOP: %p TSA: 0x%x Size: 0x%x\n", Index, (void*)pMem, TSA, size );
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue