diff --git a/BizHawk.MultiClient/tools/HexEditor.cs b/BizHawk.MultiClient/tools/HexEditor.cs index 9ce0448be9..0e08b3b94b 100644 --- a/BizHawk.MultiClient/tools/HexEditor.cs +++ b/BizHawk.MultiClient/tools/HexEditor.cs @@ -216,7 +216,7 @@ namespace BizHawk.MultiClient private void AddToRamWatch() { //Add to RAM Watch - int address = MemoryViewer.GetPointedAddress(); + int address = MemoryViewer.GetHighlightedAddress(); if (address >= 0) { Watch w = new Watch(); @@ -299,7 +299,7 @@ namespace BizHawk.MultiClient private void FreezeAddress() { - int address = MemoryViewer.GetPointedAddress(); + int address = MemoryViewer.GetHighlightedAddress(); if (address >= 0) { Cheat c = new Cheat();