aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALc.c
diff options
context:
space:
mode:
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r--Alc/ALc.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index 5aaa5b3c..714a142f 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -1235,8 +1235,6 @@ ALCAPI ALCboolean ALCAPIENTRY alcCloseDevice(ALCdevice *pDevice)
ALCvoid ReleaseALC(ALCvoid)
{
- ALCdevice *Dev;
-
#ifdef _DEBUG
if(g_ulContextCount > 0)
AL_PRINT("exit() %u device(s) and %u context(s) NOT deleted\n", g_ulDeviceCount, g_ulContextCount);
@@ -1244,12 +1242,10 @@ ALCvoid ReleaseALC(ALCvoid)
while(g_pDeviceList)
{
- Dev = g_pDeviceList;
- g_pDeviceList = g_pDeviceList->next;
- if(Dev->IsCaptureDevice)
- alcCaptureCloseDevice(Dev);
+ if(g_pDeviceList->IsCaptureDevice)
+ alcCaptureCloseDevice(g_pDeviceList);
else
- alcCloseDevice(Dev);
+ alcCloseDevice(g_pDeviceList);
}
}