FIXED: No audio buffer low logging when not throttling

git-svn-id: https://svn.code.sf.net/p/vbam/code/trunk@240 a31d4220-a93d-0410-bf67-fe4944624d44
This commit is contained in:
spacy51 2007-12-27 14:25:48 +00:00
parent b42d881176
commit c663dde691
1 changed files with 1 additions and 1 deletions

View File

@ -286,7 +286,7 @@ void OpenAL::write()
assert( AL_NO_ERROR == ALFunction.alGetError() );
if( nBuffersProcessed == theApp.oalBufferCount ) {
if( theApp.throttle >= 100 ) {
if( ( theApp.throttle >= 100 ) || ( theApp.throttle == 0 ) ) {
// we only want to know about it when we are emulating at full speed (or faster)
static int i = 0;
log( "OpenAL: Buffers were not refilled fast enough (%i)\n", i++ );