Ignore:
Timestamp:
Apr 30, 2013, 3:06:45 AM (12 years ago)
Author:
alloc
Message:

Daodan:

  • Change "multibyte" param to "nomultibyte"
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Daodan/src/Daodan_Config.c

    r838 r843  
    3030bool patch_largetextures = true;
    3131bool patch_levelplugins = true;
    32 bool patch_multibyte = false;
    3332bool patch_newweapon = true;
     33bool patch_nomultibyte = true;
    3434bool patch_optionsvisible = true;
    3535bool patch_particledisablebit = false;
     
    8686                        else if (!_stricmp(name, "ignore_private_data"))
    8787                                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");
    9090                        else if (!_stricmp(name, "sound"))
    9191                                opt_sound = !_stricmp(inifile_cleanstr(value), "true");
     
    138138                        else if (!_stricmp(name, "levelplugins"))
    139139                                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");
    142142                        else if (!_stricmp(name, "newweap"))
    143143                                patch_newweapon = !_stricmp(inifile_cleanstr(value), "true");
Note: See TracChangeset for help on using the changeset viewer.