From 2a771791d0ca85e22b25c9a296ad856f1341f012 Mon Sep 17 00:00:00 2001 From: adelikat Date: Tue, 23 Dec 2014 00:58:21 +0000 Subject: [PATCH] Debugger - fix display of registers when register setting isn't available --- BizHawk.Client.EmuHawk/tools/Debugger/RegisterBoxControl.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Client.EmuHawk/tools/Debugger/RegisterBoxControl.cs b/BizHawk.Client.EmuHawk/tools/Debugger/RegisterBoxControl.cs index fc40673fb7..f2fe5e08d7 100644 --- a/BizHawk.Client.EmuHawk/tools/Debugger/RegisterBoxControl.cs +++ b/BizHawk.Client.EmuHawk/tools/Debugger/RegisterBoxControl.cs @@ -164,7 +164,7 @@ namespace BizHawk.Client.EmuHawk this.Controls.Add(new Label { Name = register.Key, - Text = register.Value.ToString(), + Text = register.Value.Value.ToString(), Width = 45, Location = new Point(40, y) });