From b5dce54a48452591a288c8d8084d2e9e5a130382 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Fri, 5 Aug 2011 00:48:56 -0400 Subject: [PATCH] Patched to compile on Linux. (Grumble grumble, should have tested better after all the history editing...) --- src/audio/dsp/SDL_dspaudio.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/audio/dsp/SDL_dspaudio.c b/src/audio/dsp/SDL_dspaudio.c index 0d3aeb09d..f61b4aacd 100644 --- a/src/audio/dsp/SDL_dspaudio.c +++ b/src/audio/dsp/SDL_dspaudio.c @@ -49,9 +49,9 @@ static void -DSP_DetectDevices(int iscapture) +DSP_DetectDevices(int iscapture, SDL_AddAudioDevice addfn) { - SDL_EnumUnixAudioDevices(iscapture, 0, NULL); + SDL_EnumUnixAudioDevices(iscapture, 0, NULL, addfn); }