summaryrefslogtreecommitdiff
path: root/config.c
diff options
context:
space:
mode:
authorkamel5 <vdr.kamel5 (at) gmx (dot) net>2020-09-21 11:16:58 +0200
committerkamel5 <vdr.kamel5 (at) gmx (dot) net>2020-09-23 14:26:13 +0200
commit3fbc60131516a19dcf9cdf756388a3a0c67b39fc (patch)
tree9381a75375ffce0c31fd302c6f1d198e87785a27 /config.c
parent8c9a0d79258bd412d0cb82885d1f446003185937 (diff)
downloadvdr-plugin-skindesigner-1.2.8.5.tar.gz
vdr-plugin-skindesigner-1.2.8.5.tar.bz2
Refresh imgCache if OsdProvider was changed (simple fix)1.2.8.5
Diffstat (limited to 'config.c')
-rw-r--r--config.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/config.c b/config.c
index af8661b..227d004 100644
--- a/config.c
+++ b/config.c
@@ -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) {