From 34f8460e254e2eb7fae1aafcf7c94ca2c3c38b02 Mon Sep 17 00:00:00 2001 From: louis Date: Sat, 20 Jul 2013 13:46:26 +0200 Subject: Added remotetimers support --- config.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'config.c') diff --git a/config.c b/config.c index 5fb64bc..6c2c708 100644 --- a/config.c +++ b/config.c @@ -49,6 +49,8 @@ cTvguideConfig::cTvguideConfig() { channelJumpMode = eNumJump; jumpChannels = 0; blueKeyMode = 0; + closeOnSwitch = 1; + useRemoteTimers = 0; hideLastGroup = 0; hideChannelLogos = 0; logoWidthRatio = 13; @@ -276,6 +278,8 @@ bool cTvguideConfig::SetupParse(const char *Name, const char *Value) { else if (strcmp(Name, "hugeStepHours") == 0) hugeStepHours = atoi(Value); else if (strcmp(Name, "channelJumpMode") == 0) channelJumpMode = atoi(Value); else if (strcmp(Name, "blueKeyMode") == 0) blueKeyMode = atoi(Value); + else if (strcmp(Name, "closeOnSwitch") == 0) closeOnSwitch = atoi(Value); + else if (strcmp(Name, "useRemoteTimers") == 0) useRemoteTimers = atoi(Value); else if (strcmp(Name, "hideLastGroup") == 0) hideLastGroup = atoi(Value); else if (strcmp(Name, "hideEpgImages") == 0) hideEpgImages = atoi(Value); else if (strcmp(Name, "epgImageWidth") == 0) epgImageWidth = atoi(Value); -- cgit v1.2.3