aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/dsound.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2011-07-24 05:29:43 -0700
committerChris Robinson <[email protected]>2011-07-24 05:29:43 -0700
commitc722579c18eaf23e7ea98a2f12c8c8fa4aedd1a4 (patch)
tree0555aa3d779815fa73b33f5840f9b48799bca60e /Alc/dsound.c
parent2f3bd5b5d9937e9e45e926bceb48ea51b4012a9d (diff)
Make the DSound and MMDevAPI events initially non-signaled
Diffstat (limited to 'Alc/dsound.c')
-rw-r--r--Alc/dsound.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/dsound.c b/Alc/dsound.c
index b1312373..42139f3c 100644
--- a/Alc/dsound.c
+++ b/Alc/dsound.c
@@ -311,7 +311,7 @@ static ALCboolean DSoundOpenPlayback(ALCdevice *device, const ALCchar *deviceNam
}
hr = DS_OK;
- pData->hNotifyEvent = CreateEvent(NULL, FALSE, TRUE, NULL);
+ pData->hNotifyEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
if(pData->hNotifyEvent == NULL)
hr = E_FAIL;