From 86093ba19f7ef2692222152ee2b2c15603815b1a Mon Sep 17 00:00:00 2001 From: zeromus Date: Sun, 17 May 2009 01:26:51 +0000 Subject: [PATCH] i really should quit checking in debug printfs --- desmume/src/SPU.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/desmume/src/SPU.cpp b/desmume/src/SPU.cpp index 50aab59ef..0d1aace92 100644 --- a/desmume/src/SPU.cpp +++ b/desmume/src/SPU.cpp @@ -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; } }