diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2004-01-05 12:08:09 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2004-01-05 12:08:09 +0100 |
commit | 6096500940b17b92ac6be82007daf22e055e041e (patch) | |
tree | 77ca9993f9e726497c9bd271b0079106423e57a8 /config.c | |
parent | eab7806f2018eeed66d4cfb2151c069237206cd4 (diff) | |
download | vdr-6096500940b17b92ac6be82007daf22e055e041e.tar.gz vdr-6096500940b17b92ac6be82007daf22e055e041e.tar.bz2 |
Added 'Update channels' setup parameter
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 5 |
1 files changed, 4 insertions, 1 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.117 2003/10/17 14:11:27 kls Exp $ + * $Id: config.c 1.118 2004/01/05 11:45:40 kls Exp $ */ #include "config.h" @@ -272,6 +272,7 @@ cSetup::cSetup(void) UseSubtitle = 1; RecordingDirs = 1; VideoFormat = 0; + UpdateChannels = 3; RecordDolbyDigital = 1; ChannelInfoPos = 0; OSDwidth = 52; @@ -424,6 +425,7 @@ bool cSetup::Parse(const char *Name, const char *Value) else if (!strcasecmp(Name, "UseSubtitle")) UseSubtitle = atoi(Value); else if (!strcasecmp(Name, "RecordingDirs")) RecordingDirs = atoi(Value); else if (!strcasecmp(Name, "VideoFormat")) VideoFormat = atoi(Value); + else if (!strcasecmp(Name, "UpdateChannels")) UpdateChannels = atoi(Value); else if (!strcasecmp(Name, "RecordDolbyDigital")) RecordDolbyDigital = atoi(Value); else if (!strcasecmp(Name, "ChannelInfoPos")) ChannelInfoPos = atoi(Value); else if (!strcasecmp(Name, "OSDwidth")) OSDwidth = atoi(Value); @@ -474,6 +476,7 @@ bool cSetup::Save(void) Store("UseSubtitle", UseSubtitle); Store("RecordingDirs", RecordingDirs); Store("VideoFormat", VideoFormat); + Store("UpdateChannels", UpdateChannels); Store("RecordDolbyDigital", RecordDolbyDigital); Store("ChannelInfoPos", ChannelInfoPos); Store("OSDwidth", OSDwidth); |