i really should quit checking in debug printfs

This commit is contained in:
zeromus 2009-05-17 01:26:51 +00:00
parent 58ea43bf2e
commit 86093ba19f
1 changed files with 0 additions and 2 deletions

View File

@ -581,7 +581,6 @@ void SPU_struct::WriteWord(u32 addr, u16 val)
thischan.loopstart = val;
thischan.totlength = thischan.length + thischan.loopstart;
thischan.double_totlength_shifted = (double)(thischan.totlength << format_shift[thischan.format]);
LOG("%d %d %d\n",thischan.num,thischan.length,thischan.loopstart);
break;
}
@ -633,7 +632,6 @@ void SPU_struct::WriteLong(u32 addr, u32 val)
thischan.length = val & 0x3FFFFF;
thischan.totlength = thischan.length + thischan.loopstart;
thischan.double_totlength_shifted = (double)(thischan.totlength << format_shift[thischan.format]);
LOG("%d %d %d\n",thischan.num,thischan.length,thischan.loopstart);
break;
}
}