We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4e29b8 commit 7882e60Copy full SHA for 7882e60
src/audio/alsa/SDL_alsa_audio.c
@@ -357,8 +357,8 @@ static bool ALSA_WaitDevice(SDL_AudioDevice *device)
357
358
while (!SDL_GetAtomicInt(&device->shutdown) && (ALSA_snd_pcm_avail(device->hidden->pcm) < sample_frames)) {
359
if (total_delays >= (fulldelay * 5)) {
360
- // Hmm, not much we can do - abort
361
- SDL_LogError(SDL_LOG_CATEGORY_AUDIO, "ALSA: hardware seems to have frozen, giving up on it.");
+ // Hmm, not much we can do - probably disconnected, abort
+ //SDL_LogError(SDL_LOG_CATEGORY_AUDIO, "ALSA: hardware seems to have frozen, giving up on it.");
362
return false;
363
} else {
364
SDL_Delay(delay);
0 commit comments