From d9c7e094455e161158e762d27db3f760ac046404 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sat, 24 Jan 2015 18:23:04 +0000 Subject: [PATCH] Debugger - fix sound stutter on add breakpoint dialog pop up --- BizHawk.Client.EmuHawk/tools/Debugger/BreakpointControl.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/BizHawk.Client.EmuHawk/tools/Debugger/BreakpointControl.cs b/BizHawk.Client.EmuHawk/tools/Debugger/BreakpointControl.cs index 3cb167fc16..310e03e144 100644 --- a/BizHawk.Client.EmuHawk/tools/Debugger/BreakpointControl.cs +++ b/BizHawk.Client.EmuHawk/tools/Debugger/BreakpointControl.cs @@ -11,6 +11,7 @@ using BizHawk.Common.NumberExtensions; using BizHawk.Emulation.Common; using BizHawk.Emulation.Common.IEmulatorExtensions; using BizHawk.Client.Common; +using BizHawk.Client.EmuHawk.WinFormExtensions; namespace BizHawk.Client.EmuHawk.tools.Debugger { @@ -125,7 +126,7 @@ namespace BizHawk.Client.EmuHawk.tools.Debugger MaxAddressSize = Global.Emulator.AsMemoryDomains().SystemBus.Size - 1 }; - if (b.ShowDialog() == DialogResult.OK) + if (b.ShowHawkDialog() == DialogResult.OK) { Breakpoints.Add(Core, b.Address, b.BreakType); }