Remove unused variable

This commit is contained in:
Chris Robinson 2010-03-16 21:12:36 -07:00
parent 65e16cc8bb
commit 0097beb84c

View File

@ -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;