Fix comparison check

This commit is contained in:
Chris Robinson
2010-09-07 22:23:37 -07:00
parent 3763c95784
commit 50a7be6385
+1 -1
View File
@@ -1314,7 +1314,7 @@ AL_API ALvoid AL_APIENTRY alSourcePlayv(ALsizei n, const ALuint *sources)
goto done;
}
while(Context->MaxActiveSources-Context->ActiveSourceCount > n)
while(Context->MaxActiveSources-Context->ActiveSourceCount < n)
{
void *temp = NULL;
ALsizei newcount;