Debugger - fix sound stutter on add breakpoint dialog pop up

This commit is contained in:
adelikat 2015-01-24 18:23:04 +00:00
parent ac442130ae
commit d9c7e09445
1 changed files with 2 additions and 1 deletions

View File

@ -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);
}