diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2004-01-25 15:32:08 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2004-01-25 15:32:08 +0100 |
commit | 958c84f00a4be02c31eb2a1eec08e7fa68210f69 (patch) | |
tree | 945e35b5301fb448ec52724ac6c5ef29093711d4 /config.c | |
parent | da7edf6e97031d983db5632b4428fa8bd7645ff7 (diff) | |
download | vdr-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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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++ = ' '; |