From 5d8e5ae624efd44bf7a5822a1438fbea3c7d9132 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 9 Apr 2015 06:37:06 +0200 Subject: [PATCH] (DirectSound) Use slock_new instead of scond_new --- audio/drivers/dsound.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audio/drivers/dsound.c b/audio/drivers/dsound.c index 30b73312a0..d846a7eed3 100644 --- a/audio/drivers/dsound.c +++ b/audio/drivers/dsound.c @@ -371,7 +371,7 @@ static void *dsound_init(const char *device, unsigned rate, unsigned latency) bufdesc.dwBufferBytes = ds->buffer_size; bufdesc.lpwfxFormat = &wfx; - ds->event = scond_new(); + ds->event = slock_new(); if (!ds->event) goto error;