From 41bbebfb7772b6e1398eb491cbc8efeb090a45f8 Mon Sep 17 00:00:00 2001 From: 11doctorwhocanada <11doctorwhocanada@gmail.com> Date: Mon, 23 Mar 2015 18:58:09 -0500 Subject: [PATCH] Just a small fix for the dsound interface to work on the wxwidgets frontend on windows. Next up hopefully will be xaudio but it may not be fixable until the mingw-w64 crew properly supports it. --- src/wx/dsound.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wx/dsound.cpp b/src/wx/dsound.cpp index abf275c3..b6d2e93a 100644 --- a/src/wx/dsound.cpp +++ b/src/wx/dsound.cpp @@ -20,7 +20,7 @@ private: LPDIRECTSOUND8 pDirectSound; // DirectSound interface LPDIRECTSOUNDBUFFER dsbPrimary; // Primary DirectSound buffer LPDIRECTSOUNDBUFFER dsbSecondary; // Secondary DirectSound buffer - LPDIRECTSOUNDNOTIFY8 dsbNotify; + LPDIRECTSOUNDNOTIFY dsbNotify; HANDLE dsbEvent; WAVEFORMATEX wfx; // Primary buffer wave format int soundBufferLen;