blob: 7a8a9e8b2c1189c815d126f70aa27737336d584d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
* $Id: setup.c,v 1.1.1.1 2004/11/19 16:45:31 lordjaxom Exp $
*/
#include "setup.h"
cText2SkinSetup Text2SkinSetup;
// --- cText2SkinSetup --------------------------------------------------------
cText2SkinSetup::cText2SkinSetup(void) {
MaxCacheFill = 25;
}
bool cText2SkinSetup::SetupParse(const char *Name, const char *Value) {
if (strcmp(Name, "MaxCacheFill") == 0) MaxCacheFill = atoi(Value);
else return false;
return true;
}
|