debugger - fix ability to set write and execute breakpoints
This commit is contained in:
parent
d9c7e09445
commit
e4800cb8f3
|
@ -52,7 +52,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
public Breakpoint(IDebuggable core, Action callBack, uint address, MemoryCallbackType type, bool enabled = true)
|
public Breakpoint(IDebuggable core, Action callBack, uint address, MemoryCallbackType type, bool enabled = true)
|
||||||
{
|
{
|
||||||
_core = core;
|
_core = core;
|
||||||
|
Type = type;
|
||||||
Callback = callBack;
|
Callback = callBack;
|
||||||
Address = address;
|
Address = address;
|
||||||
Active = enabled;
|
Active = enabled;
|
||||||
|
|
Loading…
Reference in New Issue