diff options
author | Chris Robinson <[email protected]> | 2010-03-16 21:12:36 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2010-03-16 21:12:36 -0700 |
commit | 0097beb84cf8543485746f5796505a9148ba7fbb (patch) | |
tree | c335d1d130f33b570019e0cc7a9ab1eae2dcee34 | |
parent | 65e16cc8bba1447397483a09a9ff18c0ec1b9443 (diff) |
Remove unused variable
-rw-r--r-- | OpenAL32/alSource.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/OpenAL32/alSource.c b/OpenAL32/alSource.c index f9c3eddc..de1bd469 100644 --- a/OpenAL32/alSource.c +++ b/OpenAL32/alSource.c @@ -1706,13 +1706,10 @@ ALAPI ALvoid ALAPIENTRY alSourceUnqueueBuffers( ALuint source, ALsizei n, ALuint ALsource *ALSource; ALsizei i; ALbufferlistitem *ALBufferList; - ALboolean bBuffersProcessed; if (n == 0) return; - bBuffersProcessed = AL_TRUE; - Context = GetContextSuspended(); if(!Context) return; |