Changeset 426
- Timestamp:
- Jul 16, 2009, 3:24:07 AM (15 years ago)
- Location:
- Daodan
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Daodan/src/Daodan.c
r422 r426 37 37 bool patch_multibyte = false; 38 38 bool patch_cheattable = true; 39 bool patch_argb8888 = true; 39 40 40 41 bool patch_safeprintf = true; … … 153 154 DDrPatch_Int32 (OniExe + 0x000f616b, (int)&DDr_CheatTable[0].name); 154 155 DDrPatch_Int32 (OniExe + 0x000f617a, (int)&DDr_CheatTable[0].message_on); 156 } 157 158 if (patch_argb8888) 159 { 160 DDrPatch_Byte (OniExe + 0x00135af0, 0x07); 161 DDrPatch_Byte (OniExe + 0x00135af4, 0x0B); 155 162 } 156 163 … … 206 213 else if (!stricmp(name, "cheattable")) 207 214 patch_cheattable = !stricmp(value, "true"); 215 else if (!stricmp(name, "argb8888")) 216 patch_argb8888 = !stricmp(value, "true"); 208 217 else if (!stricmp(name, "safeprintf")) 209 218 patch_safeprintf = !stricmp(value, "true");
Note:
See TracChangeset
for help on using the changeset viewer.