Debugger - throw and catch at most 1 exception per update if core can not set cpu registers
This commit is contained in:
parent
f96110e09e
commit
76626c3fd5
|
@ -40,6 +40,8 @@ namespace BizHawk.Client.EmuHawk
|
|||
|
||||
_supressChangeEvents = true;
|
||||
|
||||
var canSetCpuRegisters = CanSetCpuRegisters;
|
||||
|
||||
foreach (var register in registers)
|
||||
{
|
||||
if (Controls.OfType<Panel>().Any(p => p.Name == "FlagPanel"))
|
||||
|
@ -59,7 +61,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
});
|
||||
}
|
||||
|
||||
if (CanSetCpuRegisters)
|
||||
if (canSetCpuRegisters)
|
||||
{
|
||||
|
||||
Controls
|
||||
|
|
Loading…
Reference in New Issue