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:
parent
c9dd050df6
commit
e2adec2b05
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue