From 20812280556a8c039b36327d5ded99b455e8dc4e Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Wed, 15 Jun 2011 06:45:51 -0700 Subject: Declare some variables where they're used --- Alc/ALc.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'Alc') diff --git a/Alc/ALc.c b/Alc/ALc.c index eeb5723c..309ad9d6 100644 --- a/Alc/ALc.c +++ b/Alc/ALc.c @@ -1234,15 +1234,16 @@ ALCvoid alcSetError(ALCdevice *device, ALenum errorCode) */ static ALCboolean UpdateDeviceParams(ALCdevice *device, const ALCint *attrList) { - ALCuint freq, numMono, numStereo, numSends; - enum DevFmtChannels schans; - enum DevFmtType stype; - ALuint attrIdx; ALuint i; // Check for attributes if(attrList && attrList[0]) { + ALCuint freq, numMono, numStereo, numSends; + enum DevFmtChannels schans; + enum DevFmtType stype; + ALuint attrIdx; + // If a context is already running on the device, stop playback so the // device attributes can be updated if((device->Flags&DEVICE_RUNNING)) -- cgit v1.2.3