diff options
author | Chris Robinson <[email protected]> | 2016-02-07 16:14:27 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2016-02-07 16:14:27 -0800 |
commit | f4fa41487c18ece49fddb512e3d9253e6eb1e92b (patch) | |
tree | 0b7df9ba19b469b63afb176cbc4b535782db2fad /Alc/backends/dsound.c | |
parent | 6105d36fd79357053b8bbe7af207a58be8a73f04 (diff) |
Replace some CreateEvent calls with CreateEventW
Diffstat (limited to 'Alc/backends/dsound.c')
-rw-r--r-- | Alc/backends/dsound.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/backends/dsound.c b/Alc/backends/dsound.c index f27ab37b..c01e42ae 100644 --- a/Alc/backends/dsound.c +++ b/Alc/backends/dsound.c @@ -357,7 +357,7 @@ static ALCenum ALCdsoundPlayback_open(ALCdsoundPlayback *self, const ALCchar *de } hr = DS_OK; - self->NotifyEvent = CreateEvent(NULL, FALSE, FALSE, NULL); + self->NotifyEvent = CreateEventW(NULL, FALSE, FALSE, NULL); if(self->NotifyEvent == NULL) hr = E_FAIL; |