aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Alc/oss.c2
-rw-r--r--Alc/solaris.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/Alc/oss.c b/Alc/oss.c
index 6d004920..fa463e0c 100644
--- a/Alc/oss.c
+++ b/Alc/oss.c
@@ -85,7 +85,7 @@ static ALuint OSSProc(ALvoid *ptr)
frameSize = aluChannelsFromFormat(pDevice->Format) *
aluBytesFromFormat(pDevice->Format);
- while(!data->killNow && !pDevice->Connected)
+ while(!data->killNow && pDevice->Connected)
{
ALint len = data->data_size;
ALubyte *WritePtr = data->mix_data;
diff --git a/Alc/solaris.c b/Alc/solaris.c
index 6f590e5e..988a91f0 100644
--- a/Alc/solaris.c
+++ b/Alc/solaris.c
@@ -60,7 +60,7 @@ static ALuint SolarisProc(ALvoid *ptr)
frameSize = aluChannelsFromFormat(pDevice->Format) *
aluBytesFromFormat(pDevice->Format);
- while(!data->killNow && !pDevice->Connected)
+ while(!data->killNow && pDevice->Connected)
{
ALint len = data->data_size;
ALubyte *WritePtr = data->mix_data;