From f3599989bc7beab810b86abd5223f8dfbce040f0 Mon Sep 17 00:00:00 2001 From: adelikat Date: Tue, 23 Dec 2014 17:12:06 +0000 Subject: [PATCH] Debugger - fix updating of register values when they are labels (when the ability to set registers is not implemented by the core) --- .../tools/Debugger/RegisterBoxControl.cs | 35 ++++++++++++++----- 1 file changed, 26 insertions(+), 9 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/Debugger/RegisterBoxControl.cs b/BizHawk.Client.EmuHawk/tools/Debugger/RegisterBoxControl.cs index 003175bda3..c4c8904a0a 100644 --- a/BizHawk.Client.EmuHawk/tools/Debugger/RegisterBoxControl.cs +++ b/BizHawk.Client.EmuHawk/tools/Debugger/RegisterBoxControl.cs @@ -58,16 +58,33 @@ namespace BizHawk.Client.EmuHawk }); } - Controls - .OfType() - .ToList() - .ForEach(textbox => - { - if (textbox.Name == register.Key) + if (CanSetCpuRegisters) + { + + Controls + .OfType() + .ToList() + .ForEach(textbox => { - textbox.Text = register.Value.Value.ToHexString(register.Value.BitSize / 16); - } - }); + if (textbox.Name == register.Key) + { + textbox.Text = register.Value.Value.ToHexString(register.Value.BitSize / 16); + } + }); + } + else + { + Controls + .OfType