summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinWX/src/Main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/DolphinWX/src/Main.cpp')
-rw-r--r--Source/Core/DolphinWX/src/Main.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/Source/Core/DolphinWX/src/Main.cpp b/Source/Core/DolphinWX/src/Main.cpp
index 4d9c18cdbe..774e9144a0 100644
--- a/Source/Core/DolphinWX/src/Main.cpp
+++ b/Source/Core/DolphinWX/src/Main.cpp
@@ -188,6 +188,17 @@ void Host_UpdateMainFrame()
}
}
+void Host_UpdateBreakPointView()
+{
+ wxCommandEvent event(wxEVT_HOST_COMMAND, IDM_UPDATEBREAKPOINTS);
+ wxPostEvent(main_frame, event);
+
+ if (code_frame)
+ {
+ wxPostEvent(code_frame, event);
+ }
+}
+
void Host_UpdateMemoryView()
{}