Skip to content

Commit

Permalink
Added an error message for when ALSA audio fails
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Oct 19, 2009
1 parent 8f481b4 commit 3324bba
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/audio/alsa/SDL_alsa_audio.c
Expand Up @@ -314,8 +314,10 @@ static void ALSA_PlayAudio(_THIS)
while ( frames_left > 0 && this->enabled ) {
status = SDL_NAME(snd_pcm_writei)(pcm_handle, sample_buf, frames_left);
if ( status < 0 ) {
if ( SDL_NAME(snd_pcm_recover)(pcm_handle, status, 0) < 0 ) {
status = SDL_NAME(snd_pcm_recover)(pcm_handle, status, 0);
if ( status < 0 ) {
/* Hmm, not much we can do - abort */
fprintf(stderr, "ALSA write failed (unrecoverable): %s", SDL_NAME(snd_strerror)(status));
this->enabled = 0;
return;
}
Expand Down

0 comments on commit 3324bba

Please sign in to comment.