diff options
Diffstat (limited to 'Source/Core/DolphinWX/src/Main.cpp')
| -rw-r--r-- | Source/Core/DolphinWX/src/Main.cpp | 11 |
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()
{}
|
