1
0
Fork 0

GUI: fixed CPUDump pointer tooltip on 64 bit

This commit is contained in:
mrexodia 2017-02-26 21:11:19 +01:00
parent 80b935ecf5
commit 9a03f959e7
No known key found for this signature in database
GPG Key ID: FC89E0AAA0C1AAD8
1 changed files with 1 additions and 2 deletions

View File

@ -385,8 +385,7 @@ void CPUDump::mouseMoveEvent(QMouseEvent* event)
int y = event->y();
// Get HexDump own RVA address, then VA in memory
int rva = getItemStartingAddress(x, y);
int va = rvaToVa(rva);
auto va = rvaToVa(getItemStartingAddress(x, y));
// Read VA
duint ptr;