aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/portaudio.c
diff options
context:
space:
mode:
Diffstat (limited to 'Alc/portaudio.c')
-rw-r--r--Alc/portaudio.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/Alc/portaudio.c b/Alc/portaudio.c
index 561f7470..2b8e0fa4 100644
--- a/Alc/portaudio.c
+++ b/Alc/portaudio.c
@@ -46,8 +46,7 @@ MAKE_FUNC(Pa_GetStreamInfo);
#undef MAKE_FUNC
-static const ALCchar pa_device[] = "PortAudio Software";
-static const ALCchar pa_capture[] = "PortAudio Capture";
+static const ALCchar pa_device[] = "PortAudio Default";
void *pa_load(void)
@@ -281,8 +280,8 @@ static ALCboolean pa_open_capture(ALCdevice *device, const ALCchar *deviceName)
PaError err;
if(!deviceName)
- deviceName = pa_capture;
- else if(strcmp(deviceName, pa_capture) != 0)
+ deviceName = pa_device;
+ else if(strcmp(deviceName, pa_device) != 0)
return ALC_FALSE;
if(!pa_load())
@@ -435,5 +434,5 @@ void alc_pa_probe(int type)
else if(type == ALL_DEVICE_PROBE)
AppendAllDeviceList(pa_device);
else if(type == CAPTURE_DEVICE_PROBE)
- AppendCaptureDeviceList(pa_capture);
+ AppendCaptureDeviceList(pa_device);
}