Disabled the buffer underflow warning.

git-svn-id: https://svn.code.sf.net/p/vbam/code/trunk@573 a31d4220-a93d-0410-bf67-fe4944624d44
This commit is contained in:
bgk 2008-06-12 17:51:52 +00:00
parent c9dd050df6
commit e2adec2b05
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;