summaryrefslogtreecommitdiff
path: root/setup.c
diff options
context:
space:
mode:
Diffstat (limited to 'setup.c')
-rw-r--r--setup.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/setup.c b/setup.c
index d59b7fa..18da5ba 100644
--- a/setup.c
+++ b/setup.c
@@ -13,7 +13,8 @@ cText2SkinSetup::cText2SkinSetup(void):
ShowAux(true),
StripAux(true),
CheckTimerConflict(false),
- MaxCacheFill(25)
+ MaxCacheFill(25),
+ SupportOldSkins(true)
{
}
@@ -25,6 +26,7 @@ bool cText2SkinSetup::SetupParse(const char *Name, const char *Value) {
else if (strcmp(Name, "StripAux") == 0) StripAux = atoi(Value);
else if (strcmp(Name, "CheckTimerConflict") == 0) CheckTimerConflict = atoi(Value);
else if (strcmp(Name, "MaxCacheFill") == 0) MaxCacheFill = atoi(Value);
+ else if (strcmp(Name, "SupportOldSkins") == 0) SupportOldSkins = atoi(Value);
else return false;
return true;
}