Changeset 843 for Daodan/src/Daodan_Config.c
- Timestamp:
- Apr 30, 2013, 3:06:45 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Daodan/src/Daodan_Config.c
r838 r843 30 30 bool patch_largetextures = true; 31 31 bool patch_levelplugins = true; 32 bool patch_multibyte = false;33 32 bool patch_newweapon = true; 33 bool patch_nomultibyte = true; 34 34 bool patch_optionsvisible = true; 35 35 bool patch_particledisablebit = false; … … 86 86 else if (!_stricmp(name, "ignore_private_data")) 87 87 opt_ignore_private_data = !_stricmp(inifile_cleanstr(value), "true"); 88 else if (!_stricmp(name, " multibyte"))89 patch_ multibyte = !_stricmp(inifile_cleanstr(value), "true");88 else if (!_stricmp(name, "nomultibyte")) 89 patch_nomultibyte = !_stricmp(inifile_cleanstr(value), "true"); 90 90 else if (!_stricmp(name, "sound")) 91 91 opt_sound = !_stricmp(inifile_cleanstr(value), "true"); … … 138 138 else if (!_stricmp(name, "levelplugins")) 139 139 patch_levelplugins = !_stricmp(inifile_cleanstr(value), "true"); 140 else if (!_stricmp(name, " multibyte"))141 patch_ multibyte = !_stricmp(inifile_cleanstr(value), "true");140 else if (!_stricmp(name, "nomultibyte")) 141 patch_nomultibyte = !_stricmp(inifile_cleanstr(value), "true"); 142 142 else if (!_stricmp(name, "newweap")) 143 143 patch_newweapon = !_stricmp(inifile_cleanstr(value), "true");
Note:
See TracChangeset
for help on using the changeset viewer.