--- Daodan/src/Daodan_Config.c 2013/06/02 11:25:34 877 +++ Daodan/src/Daodan_Config.c 2014/03/16 20:06:52 983 @@ -25,6 +25,8 @@ bool patch_disablecmdline = true; bool patch_flatline = true; bool patch_fonttexturecache = true; bool patch_getcmdline = true; +bool patch_hdscreens_lowres = true; +bool patch_highres_console = true; bool patch_kickguns = false; bool patch_killvtune = true; bool patch_largetextures = true; @@ -36,6 +38,7 @@ bool patch_particledisablebit = false; bool patch_pathfinding = true; bool patch_projaware = true; bool patch_safeprintf = true; +bool patch_showalllasersights = false; bool patch_throwtest = false; bool patch_usedaodangl = true; bool patch_usegettickcount = true; @@ -129,6 +132,10 @@ bool DDrIniCallback(char* section, bool patch_fonttexturecache = !_stricmp(inifile_cleanstr(value), "true"); else if (!_stricmp(name, "getcmdline")) patch_getcmdline = !_stricmp(inifile_cleanstr(value), "true"); + else if (!_stricmp(name, "hdscreens_lowres")) + patch_hdscreens_lowres = !_stricmp(inifile_cleanstr(value), "true"); + else if (!_stricmp(name, "highres_console")) + patch_highres_console = !_stricmp(inifile_cleanstr(value), "true"); else if (!_stricmp(name, "kickguns")) patch_kickguns = !_stricmp(inifile_cleanstr(value), "true"); else if (!_stricmp(name, "killvtune")) @@ -151,6 +158,8 @@ bool DDrIniCallback(char* section, bool patch_projaware = !_stricmp(inifile_cleanstr(value), "true"); else if (!_stricmp(name, "safeprintf")) patch_safeprintf = !_stricmp(inifile_cleanstr(value), "true"); + else if (!_stricmp(name, "showalllasersights")) + patch_showalllasersights = !_stricmp(inifile_cleanstr(value), "true"); else if (!_stricmp(name, "throwtest")) patch_throwtest = !_stricmp(inifile_cleanstr(value), "true"); else if (!_stricmp(name, "usedaodangl"))