Skip to content

Commit

Permalink
fix 32-bit version
Browse files Browse the repository at this point in the history
  • Loading branch information
cheat-engine committed Feb 6, 2019
1 parent 5854474 commit 4c14573
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Cheat Engine/symbolhandler.pas
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ TSymbolloaderthread=class(tthread)
symbolloaderthreadeventqueueCS: TCriticalSection;

modulelist: record
withdebuginfo: array of IMAGEHLP_MODULE64;
withoutdebuginfo: array of IMAGEHLP_MODULE64;
withdebuginfo: array of IMAGEHLP_MODULE{$ifdef cpu64}64{$endif};
withoutdebuginfo: array of IMAGEHLP_MODULE{$ifdef cpu64}64{$endif};
end;
procedure processThreadEvents; //in case another thread is in a hurry and doesn't want to wait

Expand Down Expand Up @@ -545,8 +545,8 @@ procedure TSymbolloaderthread.LoadDLLSymbols;
modulename: pchar;
modulelisttype: integer;

mi: IMAGEHLP_MODULE64;

mi: IMAGEHLP_MODULE{$ifdef cpu64}64{$endif};
offset: integer;
begin
{$ifndef unix}
need:=0;
Expand Down

0 comments on commit 4c14573

Please sign in to comment.