Remove unnecessary check

This commit is contained in:
Chris Robinson
2010-09-07 22:38:29 -07:00
parent 50a7be6385
commit 6e32812bc1
-6
View File
@@ -1308,12 +1308,6 @@ AL_API ALvoid AL_APIENTRY alSourcePlayv(ALsizei n, const ALuint *sources)
}
}
if(Context->ActiveSourceCount+n < n)
{
alSetError(Context, AL_OUT_OF_MEMORY);
goto done;
}
while(Context->MaxActiveSources-Context->ActiveSourceCount < n)
{
void *temp = NULL;