diff options
author | phintuka <phintuka> | 2007-01-20 18:21:27 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2007-01-20 18:21:27 +0000 |
commit | 33151351ecd3a9078512b91358056f1a0542f052 (patch) | |
tree | dc2869176100625997ec73758921a83583e9e12b | |
parent | 9ec49cb826c474fe4afdf5793479dd39e6f3812e (diff) | |
download | xineliboutput-33151351ecd3a9078512b91358056f1a0542f052.tar.gz xineliboutput-33151351ecd3a9078512b91358056f1a0542f052.tar.bz2 |
Use /dev/dsp as OSS default device (patch from Ville Skyttä)
-rw-r--r-- | setup_menu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setup_menu.c b/setup_menu.c index 2446fdc1..908a1e4f 100644 --- a/setup_menu.c +++ b/setup_menu.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: setup_menu.c,v 1.18 2007-01-06 04:43:34 phintuka Exp $ + * $Id: setup_menu.c,v 1.19 2007-01-20 18:21:27 phintuka Exp $ * */ @@ -1118,7 +1118,7 @@ eOSState cMenuSetupLocal::ProcessKey(eKeys Key) else if(audio_driver == AUDIO_DRIVER_ALSA) strcpy(newconfig.audio_port, "default"); else if(audio_driver == AUDIO_DRIVER_OSS) - strcpy(newconfig.audio_port, "/dev/dsp0"); + strcpy(newconfig.audio_port, "/dev/dsp"); else strcpy(newconfig.audio_port, ""); Set(); |