summaryrefslogtreecommitdiff
path: root/config.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2004-01-25 15:32:08 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2004-01-25 15:32:08 +0100
commit958c84f00a4be02c31eb2a1eec08e7fa68210f69 (patch)
tree945e35b5301fb448ec52724ac6c5ef29093711d4 /config.c
parentda7edf6e97031d983db5632b4428fa8bd7645ff7 (diff)
downloadvdr-958c84f00a4be02c31eb2a1eec08e7fa68210f69.tar.gz
vdr-958c84f00a4be02c31eb2a1eec08e7fa68210f69.tar.bz2
Implemented 32 audio and Dolby PIDs; storing audio language in channels.conf
Diffstat (limited to 'config.c')
-rw-r--r--config.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/config.c b/config.c
index 6caf587a..f6814e84 100644
--- a/config.c
+++ b/config.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: config.c 1.120 2004/01/11 15:38:11 kls Exp $
+ * $Id: config.c 1.121 2004/01/25 14:41:10 kls Exp $
*/
#include "config.h"
@@ -403,7 +403,7 @@ void cSetup::StoreLanguages(const char *Name, int *Values)
for (int i = 0; i < I18nNumLanguages; i++) {
if (Values[i] < 0)
break;
- const char *s = I18nLanguageAbbreviation(Values[i]);
+ const char *s = I18nLanguageCode(Values[i]);
if (s) {
if (q > buffer)
*q++ = ' ';