--- Daodan/src/Daodan_Config.c 2013/04/30 01:06:45 843 +++ Daodan/src/Daodan_Config.c 2013/06/02 11:25:34 877 @@ -20,9 +20,9 @@ bool patch_cheattable = true; bool patch_clipcursor = true; bool patch_cooldowntimer = true; bool patch_daodandisplayenum = true; -bool patch_daodaninit = true; bool patch_directinput = true; bool patch_disablecmdline = true; +bool patch_flatline = true; bool patch_fonttexturecache = true; bool patch_getcmdline = true; bool patch_kickguns = false; @@ -119,12 +119,12 @@ bool DDrIniCallback(char* section, bool patch_cooldowntimer = !_stricmp(inifile_cleanstr(value), "true"); else if (!_stricmp(name, "daodandisplayenum")) patch_daodandisplayenum = !_stricmp(inifile_cleanstr(value), "true"); - else if (!_stricmp(name, "daodaninit")) - patch_daodaninit = !_stricmp(inifile_cleanstr(value), "true"); else if (!_stricmp(name, "directinput")) patch_directinput = !_stricmp(inifile_cleanstr(value), "true"); else if (!_stricmp(name, "disablecmdline")) patch_disablecmdline = !_stricmp(inifile_cleanstr(value), "true"); + else if (!_stricmp(name, "flatline")) + patch_flatline = !_stricmp(inifile_cleanstr(value), "true"); else if (!_stricmp(name, "fonttexturecache")) patch_fonttexturecache = !_stricmp(inifile_cleanstr(value), "true"); else if (!_stricmp(name, "getcmdline")) @@ -303,6 +303,9 @@ void DDrConfig(int argc, char* argv[]) if (fp) { fputs("[Options]\n", fp); + fputs("[Patch]\n", fp); + fputs("[BSL]\n", fp); + fputs("[Language]\n", fp); fclose(fp); } }