diff options
author | Chris Robinson <[email protected]> | 2010-09-07 22:23:37 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2010-09-07 22:23:37 -0700 |
commit | 50a7be6385a1252e97f9b4688bf588926d2b4c32 (patch) | |
tree | b8d40fdaf932e6d5b1269afb91c4e053a44066a1 /OpenAL32 | |
parent | 3763c957840ea7185a539a043d135fd5a9ab20eb (diff) |
Fix comparison check
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/alSource.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/alSource.c b/OpenAL32/alSource.c index 8df2935c..61091520 100644 --- a/OpenAL32/alSource.c +++ b/OpenAL32/alSource.c @@ -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; |