aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALu.c
diff options
context:
space:
mode:
Diffstat (limited to 'Alc/ALu.c')
-rw-r--r--Alc/ALu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/ALu.c b/Alc/ALu.c
index 192ff686..3ce7a3b1 100644
--- a/Alc/ALu.c
+++ b/Alc/ALu.c
@@ -1093,6 +1093,8 @@ ALvoid aluHandleDisconnect(ALCdevice *device)
ALCcontext *Context;
LockDevice(device);
+ device->Connected = ALC_FALSE;
+
Context = device->ContextList;
while(Context)
{
@@ -1115,7 +1117,5 @@ ALvoid aluHandleDisconnect(ALCdevice *device)
Context = Context->next;
}
-
- device->Connected = ALC_FALSE;
UnlockDevice(device);
}