Remove an unnecessary check

openmw-38
Chris Robinson 9 years ago
parent 574c1923fe
commit 45628316f8

@ -436,8 +436,8 @@ bool OpenAL_SoundStream::process()
alGetSourcei(mSource, AL_SOURCE_STATE, &state); alGetSourcei(mSource, AL_SOURCE_STATE, &state);
if(state != AL_PLAYING && state != AL_PAUSED) if(state != AL_PLAYING && state != AL_PAUSED)
{ {
if(refillQueue() > 0) refillQueue();
alSourcePlay(mSource); alSourcePlay(mSource);
} }
} }
} }

Loading…
Cancel
Save