Disabled the buffer underflow warning.

This commit is contained in:
bgk 2008-06-12 17:51:52 +00:00
parent 4e514ca2a2
commit 5ee8ba5c09
1 changed files with 3 additions and 2 deletions

View File

@ -48,8 +48,9 @@ static int patestCallback( const void *inputBuffer, void *outputBuffer,
return paContinue;
}
if (soundbufsize - audioFree() < outBufferLength)
fprintf(stderr, "** PortAudio : buffer underflow **\n");
// Not enough available data to fill the sound buffer
//if (soundbufsize - audioFree() < outBufferLength)
// fprintf(stderr, "** PortAudio : buffer underflow **\n");
u8 *soundbuf = (u8 *)stereodata16;