Ultraplayer Newbie cheater
Reputation: 0
Joined: 06 Apr 2019 Posts: 20
|
Posted: Wed Sep 25, 2019 3:25 am Post subject: [Bug] WatchList - Browse memory region x64 |
|
|
When working with x64 apps (and addresses of course), watchlist's menu (Browse memory region) can't jump to correct address (jumps no nowhere). I believe bug is here:
| Code: | unit frmWatchlistUnit;
...
procedure TfrmWatchlist.MenuItem4Click(Sender: TObject);
var
//a: integer; <<---- Here address can hold only 4 bytes
a: PtrUInt; // <<---- Solution
e: boolean;
begin
if lvWatchlist.ItemIndex<>-1 then
begin
a:=symhandler.getAddressFromName(lvWatchlist.items[lvWatchlist.ItemIndex].caption, false, e, context);
if not e then
begin
memorybrowser.hexview.Address:=a;
memorybrowser.show;
end;
end;
end;
|
|
|