mirror of
https://github.com/Relintai/sdl2_frt.git
synced 2025-02-17 20:34:28 +01:00
Don't assert if an audio backend reports the same device disconnected twice.
This commit is contained in:
parent
7c4b88f2db
commit
75973f81b2
@ -424,7 +424,10 @@ SDL_AddAudioDevice(const int iscapture, const char *name, void *handle)
|
||||
void SDL_OpenedAudioDeviceDisconnected(SDL_AudioDevice *device)
|
||||
{
|
||||
SDL_assert(get_audio_device(device->id) == device);
|
||||
SDL_assert(device->enabled); /* called more than once?! */
|
||||
|
||||
if (!device->enabled) {
|
||||
return;
|
||||
}
|
||||
|
||||
/* Ends the audio callback and mark the device as STOPPED, but the
|
||||
app still needs to close the device to free resources. */
|
||||
|
Loading…
Reference in New Issue
Block a user