SDLAudioStream: Don't allow format to change

pull/211/head
Connor McLaughlin 5 years ago
parent e48e6141c8
commit 78a6666439

@ -29,8 +29,7 @@ bool SDLAudioStream::OpenDevice()
spec.callback = AudioCallback;
spec.userdata = static_cast<void*>(this);
SDL_AudioSpec obtained = {};
if (SDL_OpenAudio(&spec, &obtained) < 0)
if (SDL_OpenAudio(&spec, nullptr) < 0)
{
Log_ErrorPrintf("SDL_OpenAudio failed");
return false;

Loading…
Cancel
Save