diff options
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -2,6 +2,7 @@ #include "config.h" cTVGuideConfig::cTVGuideConfig() { + useHWAccel = false; debugImageLoading = 0; showMainMenuEntry = 1; replaceOriginalSchedule = 0; @@ -243,6 +244,7 @@ cString cTVGuideConfig::checkSlashAtEnd(std::string path) { bool cTVGuideConfig::SetupParse(const char *Name, const char *Value) { if (strcmp(Name, "timeFormat") == 0) timeFormat = atoi(Value); else if (strcmp(Name, "debugImageLoading") == 0) debugImageLoading = atoi(Value); + else if (strcmp(Name, "useHWAccel") == 0) useHWAccel = atoi(Value); else if (strcmp(Name, "showMainMenuEntry") == 0) showMainMenuEntry = atoi(Value); else if (strcmp(Name, "replaceOriginalSchedule") == 0) replaceOriginalSchedule = atoi(Value); else if (strcmp(Name, "useNopacityTheme") == 0) useNopacityTheme = atoi(Value); |