1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-06-23 16:11:33 +00:00

Remove an unnecessary check

This commit is contained in:
Chris Robinson 2015-11-24 05:03:08 -08:00
parent 574c1923fe
commit 45628316f8

View file

@ -436,7 +436,7 @@ 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);
} }
} }