Skip to content

Commit

Permalink
when using memview to open dissect data, add an address even when the…
Browse files Browse the repository at this point in the history
… address is 0
  • Loading branch information
cheat-engine committed Jul 26, 2021
1 parent af3a2d3 commit 7c206a6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Cheat Engine/MemoryBrowserFormUnit.pas
Original file line number Diff line number Diff line change
Expand Up @@ -1871,6 +1871,9 @@ procedure TMemoryBrowser.miDissectData2Click(Sender: TObject);
begin
initialaddress:=memoryaddress;
show;

if initialaddress=0 then //address 0 would normally NOT add a new address, but this is a user specified address, so do it anyhow
addColumn;
end;
end;
end;
Expand Down

0 comments on commit 7c206a6

Please sign in to comment.