less debugging for buffered chips

This commit is contained in:
dinkc64 2019-05-13 09:20:43 -04:00
parent 7978653bee
commit 774442a5d0
2 changed files with 2 additions and 2 deletions

View File

@ -87,7 +87,7 @@ static void UpdateStream(INT32 chip, INT32 samples_len)
#if defined FBA_DEBUG
#ifdef __GNUC__
bprintf(0, _T("ay8910_sync: %d samples frame %d\n"), nSamplesNeeded, nCurrentFrame);
//bprintf(0, _T("ay8910_sync: %d samples frame %d\n"), nSamplesNeeded, nCurrentFrame);
#endif
#endif

View File

@ -63,7 +63,7 @@ static void UpdateStream(INT32 chip, INT32 samples_len)
INT16 *mix = soundbuf[chip] + 5 + (nPosition[chip] * 2); // * 2 (stereo stream)
//memset(mix, 0, nSamplesNeeded * sizeof(INT16) * 2);
bprintf(0, _T("sn76496_sync: %d samples frame %d\n"), nSamplesNeeded, nCurrentFrame);
//bprintf(0, _T("sn76496_sync: %d samples frame %d\n"), nSamplesNeeded, nCurrentFrame);
SN76496UpdateToBuffer(chip, mix, nSamplesNeeded);