Skip to content

Commit

Permalink
Fixed:Unable to write assembly code to 64bit address when using binutils
Browse files Browse the repository at this point in the history
  • Loading branch information
DoranekoSystems committed Aug 10, 2021
1 parent 7be0cac commit 71af5eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cheat Engine/gnuassembler.pas
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ function gnuassemble2(originalscript: tstrings; targetself: boolean; var CEAlloc
sections[j].name:='_'+p1;

try
sections[j].address:=strtoint(p2)
sections[j].address:=StrToQWord(p2)
except
sections[j].address:=symhandler.getAddressFromName(p2);
end;
Expand Down

0 comments on commit 71af5eb

Please sign in to comment.