From a39ea39563c83603de53994e321b564b3d434eee Mon Sep 17 00:00:00 2001 From: Sour Date: Sun, 10 Jun 2018 14:45:41 -0400 Subject: [PATCH] Debugger: Fixed missing information in op code tooltips --- GUI.NET/Debugger/CodeTooltipManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GUI.NET/Debugger/CodeTooltipManager.cs b/GUI.NET/Debugger/CodeTooltipManager.cs index a1ee41eb..70066586 100644 --- a/GUI.NET/Debugger/CodeTooltipManager.cs +++ b/GUI.NET/Debugger/CodeTooltipManager.cs @@ -187,7 +187,7 @@ namespace Mesen.GUI.Debugger } if(ConfigManager.Config.DebugInfo.ShowOpCodeTooltips && frmOpCodeTooltip.IsOpCode(word)) { - ShowTooltip(word, null, -1, new AddressTypeInfo() { Address = address, Type = AddressType.Register }); + ShowTooltip(word, null, address, new AddressTypeInfo() { Address = address, Type = AddressType.Register }); closeExistingPopup = false; } }