diff options
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -24,6 +24,8 @@ cDesignerConfig::cDesignerConfig() { numCustomTokens = 10; //Frames per Second to display animations FPS = 50; + //Fixes some issues with openGL + fixForopenGL = 0; //remember current skin and theme, osd size and osd fonts SetSkin(); SetOSDSize(); @@ -517,6 +519,7 @@ bool cDesignerConfig::SetupParse(const char *Name, const char *Value) { else if (!strcasecmp(Name, "RerunMaxChannel")) rerunMaxChannel = atoi(Value); else if (!strcasecmp(Name, "NumCustomTokens")) numCustomTokens = atoi(Value); else if (!strcasecmp(Name, "FPS")) FPS = atoi(Value); + else if (!strcasecmp(Name, "FixForopenGL")) fixForopenGL = atoi(Value); else pluginSetupParam = false; if (!pluginSetupParam) { |