Changeset 459 for Daodan/src


Ignore:
Timestamp:
Aug 24, 2009, 1:32:06 PM (15 years ago)
Author:
rossy
Message:

lolol bugfix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Daodan/src/Daodan.c

    r455 r459  
    3939bool patch_cheattable = true;
    4040bool patch_argb8888 = true;
     41bool patch_killvtune = true;
    4142
    4243bool patch_safeprintf = true;
     
    162163        }
    163164       
     165        // ARGB8888 textures
    164166        if (patch_argb8888)
    165167        {
     
    167169                DDrPatch_Byte  (OniExe + 0x00135af4, 0x0B);
    168170        }
     171       
     172        // Disable loading the vtuneapi.dll
     173        if (patch_killvtune)
     174                DDrPatch_Byte  (OniExe + 0x00026340, 0xC3);
    169175       
    170176        return true;
     
    229235                        else if (!stricmp(name, "argb8888"))
    230236                                patch_argb8888 = !stricmp(inifile_cleanstr(value), "true");
     237                        else if (!stricmp(name, "killvtune"))
     238                                patch_killvtune = !stricmp(inifile_cleanstr(value), "true");
    231239                        else if (!stricmp(name, "safeprintf"))
    232240                                patch_safeprintf = !stricmp(inifile_cleanstr(value), "true");
Note: See TracChangeset for help on using the changeset viewer.