mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-05-04 17:35:42 -04:00
SDLAudioStream: Don't allow format to change
This commit is contained in:
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…
x
Reference in New Issue
Block a user