| 20 |
|
bool patch_clipcursor = true; |
| 21 |
|
bool patch_cooldowntimer = true; |
| 22 |
|
bool patch_daodandisplayenum = true; |
| 23 |
– |
bool patch_daodaninit = true; |
| 23 |
|
bool patch_directinput = true; |
| 24 |
|
bool patch_disablecmdline = true; |
| 25 |
+ |
bool patch_flatline = true; |
| 26 |
|
bool patch_fonttexturecache = true; |
| 27 |
|
bool patch_getcmdline = true; |
| 28 |
|
bool patch_kickguns = false; |
| 29 |
|
bool patch_killvtune = true; |
| 30 |
|
bool patch_largetextures = true; |
| 31 |
|
bool patch_levelplugins = true; |
| 32 |
– |
bool patch_multibyte = false; |
| 32 |
|
bool patch_newweapon = true; |
| 33 |
+ |
bool patch_nomultibyte = true; |
| 34 |
|
bool patch_optionsvisible = true; |
| 35 |
|
bool patch_particledisablebit = false; |
| 36 |
|
bool patch_pathfinding = true; |
| 85 |
|
opt_gamma = !_stricmp(inifile_cleanstr(value), "true"); |
| 86 |
|
else if (!_stricmp(name, "ignore_private_data")) |
| 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 |
|
else if (!_stricmp(name, "sound")) |
| 91 |
|
opt_sound = !_stricmp(inifile_cleanstr(value), "true"); |
| 92 |
|
else if (!_stricmp(name, "switch")) |
| 119 |
|
patch_cooldowntimer = !_stricmp(inifile_cleanstr(value), "true"); |
| 120 |
|
else if (!_stricmp(name, "daodandisplayenum")) |
| 121 |
|
patch_daodandisplayenum = !_stricmp(inifile_cleanstr(value), "true"); |
| 122 |
– |
else if (!_stricmp(name, "daodaninit")) |
| 123 |
– |
patch_daodaninit = !_stricmp(inifile_cleanstr(value), "true"); |
| 122 |
|
else if (!_stricmp(name, "directinput")) |
| 123 |
|
patch_directinput = !_stricmp(inifile_cleanstr(value), "true"); |
| 124 |
|
else if (!_stricmp(name, "disablecmdline")) |
| 125 |
|
patch_disablecmdline = !_stricmp(inifile_cleanstr(value), "true"); |
| 126 |
+ |
else if (!_stricmp(name, "flatline")) |
| 127 |
+ |
patch_flatline = !_stricmp(inifile_cleanstr(value), "true"); |
| 128 |
|
else if (!_stricmp(name, "fonttexturecache")) |
| 129 |
|
patch_fonttexturecache = !_stricmp(inifile_cleanstr(value), "true"); |
| 130 |
|
else if (!_stricmp(name, "getcmdline")) |
| 137 |
|
patch_largetextures = !_stricmp(inifile_cleanstr(value), "true"); |
| 138 |
|
else if (!_stricmp(name, "levelplugins")) |
| 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 |
|
else if (!_stricmp(name, "newweap")) |
| 143 |
|
patch_newweapon = !_stricmp(inifile_cleanstr(value), "true"); |
| 144 |
|
else if (!_stricmp(name, "optionsvisible")) |
| 303 |
|
if (fp) |
| 304 |
|
{ |
| 305 |
|
fputs("[Options]\n", fp); |
| 306 |
+ |
fputs("[Patch]\n", fp); |
| 307 |
+ |
fputs("[BSL]\n", fp); |
| 308 |
+ |
fputs("[Language]\n", fp); |
| 309 |
|
fclose(fp); |
| 310 |
|
} |
| 311 |
|
} |