From e4800cb8f32c66139dfb2af8e923878b131f7341 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sat, 24 Jan 2015 19:50:18 +0000 Subject: [PATCH] debugger - fix ability to set write and execute breakpoints --- BizHawk.Client.EmuHawk/tools/Debugger/Breakpoint.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Client.EmuHawk/tools/Debugger/Breakpoint.cs b/BizHawk.Client.EmuHawk/tools/Debugger/Breakpoint.cs index 49b310e217..d99bd698c8 100644 --- a/BizHawk.Client.EmuHawk/tools/Debugger/Breakpoint.cs +++ b/BizHawk.Client.EmuHawk/tools/Debugger/Breakpoint.cs @@ -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;