Debugger - fix sound stutter on add breakpoint dialog pop up
This commit is contained in:
parent
ac442130ae
commit
d9c7e09445
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue