Ignore:
Timestamp:
Jun 2, 2013, 1:25:34 PM (11 years ago)
Author:
alloc
Message:

Daodan: Moved flatline to subfolder, flatline enabled through patch "flatline"

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Daodan/src/Daodan_Config.c

    r843 r877  
    2121bool patch_cooldowntimer = true;
    2222bool patch_daodandisplayenum = true;
    23 bool patch_daodaninit = true;
    2423bool patch_directinput = true;
    2524bool patch_disablecmdline = true;
     25bool patch_flatline = true;
    2626bool patch_fonttexturecache = true;
    2727bool patch_getcmdline = true;
     
    120120                        else if (!_stricmp(name, "daodandisplayenum"))
    121121                                patch_daodandisplayenum = !_stricmp(inifile_cleanstr(value), "true");
    122                         else if (!_stricmp(name, "daodaninit"))
    123                                 patch_daodaninit = !_stricmp(inifile_cleanstr(value), "true");
    124122                        else if (!_stricmp(name, "directinput"))
    125123                                patch_directinput = !_stricmp(inifile_cleanstr(value), "true");
    126124                        else if (!_stricmp(name, "disablecmdline"))
    127125                                patch_disablecmdline = !_stricmp(inifile_cleanstr(value), "true");
     126                        else if (!_stricmp(name, "flatline"))
     127                                patch_flatline = !_stricmp(inifile_cleanstr(value), "true");
    128128                        else if (!_stricmp(name, "fonttexturecache"))
    129129                                patch_fonttexturecache = !_stricmp(inifile_cleanstr(value), "true");
     
    304304                {
    305305                        fputs("[Options]\n", fp);
     306                        fputs("[Patch]\n", fp);
     307                        fputs("[BSL]\n", fp);
     308                        fputs("[Language]\n", fp);
    306309                        fclose(fp);
    307310                }
Note: See TracChangeset for help on using the changeset viewer.