diff --git a/src/SoundMixer/cmixer.cpp b/src/SoundMixer/cmixer.cpp index 58b9cdf..b4cf72f 100644 --- a/src/SoundMixer/cmixer.cpp +++ b/src/SoundMixer/cmixer.cpp @@ -87,7 +87,7 @@ void cmixer::InitWithSDL() // Init SDL audio SDL_AudioSpec fmt = {}; fmt.freq = 44100; - fmt.format = AUDIO_S16; + fmt.format = AUDIO_S16SYS; fmt.channels = 2; fmt.samples = 1024; fmt.callback = [](void* udata, Uint8* stream, int size)