debugger - fix ability to set write and execute breakpoints

This commit is contained in:
adelikat 2015-01-24 19:50:18 +00:00
parent d9c7e09445
commit e4800cb8f3
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ namespace BizHawk.Client.EmuHawk
public Breakpoint(IDebuggable core, Action callBack, uint address, MemoryCallbackType type, bool enabled = true)
{
_core = core;
Type = type;
Callback = callBack;
Address = address;
Active = enabled;