--- Daodan/src/Daodan_Config.c 2013/04/29 16:29:16 838 +++ Daodan/src/Daodan_Config.c 2013/04/30 01:06:45 843 @@ -29,8 +29,8 @@ bool patch_kickguns = false; bool patch_killvtune = true; bool patch_largetextures = true; bool patch_levelplugins = true; -bool patch_multibyte = false; bool patch_newweapon = true; +bool patch_nomultibyte = true; bool patch_optionsvisible = true; bool patch_particledisablebit = false; bool patch_pathfinding = true; @@ -85,8 +85,8 @@ bool DDrIniCallback(char* section, bool opt_gamma = !_stricmp(inifile_cleanstr(value), "true"); else if (!_stricmp(name, "ignore_private_data")) opt_ignore_private_data = !_stricmp(inifile_cleanstr(value), "true"); - else if (!_stricmp(name, "multibyte")) - patch_multibyte = !_stricmp(inifile_cleanstr(value), "true"); + else if (!_stricmp(name, "nomultibyte")) + patch_nomultibyte = !_stricmp(inifile_cleanstr(value), "true"); else if (!_stricmp(name, "sound")) opt_sound = !_stricmp(inifile_cleanstr(value), "true"); else if (!_stricmp(name, "switch")) @@ -137,8 +137,8 @@ bool DDrIniCallback(char* section, bool patch_largetextures = !_stricmp(inifile_cleanstr(value), "true"); else if (!_stricmp(name, "levelplugins")) patch_levelplugins = !_stricmp(inifile_cleanstr(value), "true"); - else if (!_stricmp(name, "multibyte")) - patch_multibyte = !_stricmp(inifile_cleanstr(value), "true"); + else if (!_stricmp(name, "nomultibyte")) + patch_nomultibyte = !_stricmp(inifile_cleanstr(value), "true"); else if (!_stricmp(name, "newweap")) patch_newweapon = !_stricmp(inifile_cleanstr(value), "true"); else if (!_stricmp(name, "optionsvisible"))