aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
diff options
context:
space:
mode:
Diffstat (limited to 'Alc')
-rw-r--r--Alc/oss.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/Alc/oss.c b/Alc/oss.c
index 61b46ed9..ccd70186 100644
--- a/Alc/oss.c
+++ b/Alc/oss.c
@@ -303,18 +303,20 @@ static void oss_close_playback(ALCdevice *device)
static ALCboolean oss_open_capture(ALCdevice *device, const ALCchar *deviceName, ALCuint frequency, ALCenum format, ALCsizei SampleSize)
{
- char driver[64] = "/dev/dsp";
int numFragmentsLogSize;
int log2FragmentSize;
unsigned int periods;
audio_buf_info info;
int numChannels;
+ char driver[64];
oss_data *data;
int ossFormat;
int ossSpeed;
char *err;
int i;
+ strncpy(driver, GetConfigValue("oss", "capture", "/dev/dsp"), sizeof(driver)-1);
+ driver[sizeof(driver)-1] = 0;
if(deviceName)
{
if(strcmp(deviceName, oss_device_capture))