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.

This commit is contained in:
11doctorwhocanada 2015-03-23 18:58:09 -05:00
parent e96db2c3ba
commit 41bbebfb77
1 changed files with 1 additions and 1 deletions

View File

@ -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;