Changeset 491


Ignore:
Timestamp:
Sep 10, 2010, 6:53:54 AM (14 years ago)
Author:
george
Message:
  • Přidáno: Kontrola existence znaku $cc za sekvencí a čtveřicí adres.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tools/wow_patcher/wowpatcher.pas

    r490 r491  
    164164          for I := 0 to 3 do
    165165            if Buffer[Position + Shift + 3 + I * 4] <> 0 then NotValid := True;
     166          if Buffer[Position + Shift + 3 + 4 * 4] <> $cc then NotValid := True;
    166167          if NotValid then Inc(Shift);
    167168          if Shift > 100 then begin
     
    202203          for I := 0 to 3 do
    203204            if Buffer[Position + Shift + 3 + I * 4] <> 0 then NotValid := True;
     205          if Buffer[Position + Shift + 3 + 4 * 4] <> $cc then NotValid := True;
    204206          if NotValid then Inc(Shift);
    205207          if Shift > 100 then begin
Note: See TracChangeset for help on using the changeset viewer.