From 9ae8cc5e2e02f53f2d8d00b4deac441b9e9e6af4 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Wed, 20 Feb 2013 13:25:38 -0500 Subject: [PATCH] Allow SDL_AUDIODRIVER="pulse" to do the right thing. (We renamed this audio target at some point; the Internet didn't get the memo.) --- src/audio/SDL_audio.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/audio/SDL_audio.c b/src/audio/SDL_audio.c index 090e0144b..c5d2d6cf3 100644 --- a/src/audio/SDL_audio.c +++ b/src/audio/SDL_audio.c @@ -577,6 +577,11 @@ SDL_AudioInit(const char *driver_name) driver_name = SDL_getenv("SDL_AUDIODRIVER"); } + /* Older versions of SDL had a different name for the PulseAudio target. */ + if (driver_name && (SDL_strcmp(driver_name, "pulse") == 0)) { + driver_name = "pulseaudio"; + } + for (i = 0; (!initialized) && (bootstrap[i]); ++i) { /* make sure we should even try this driver before doing so... */ const AudioBootStrap *backend = bootstrap[i];