diff -r 6cccc0beb880 -r b6b2829cd7ef src/audio/SDL_audio.c --- a/src/audio/SDL_audio.c Tue Feb 19 22:05:52 2013 +0000 +++ b/src/audio/SDL_audio.c Wed Feb 27 15:20:31 2013 -0800 @@ -310,6 +310,11 @@ SDL_AudioQuit(); } + /* SDL 2.0 uses the name "pulseaudio", so we'll support both */ + if ( driver_name && SDL_strcasecmp(driver_name, "pulseaudio") == 0 ) { + driver_name = "pulse"; + } + /* Select the proper audio driver */ audio = NULL; idx = 0;