From b0bce0d9ab92f65b336d4fbc133571a8f4ba9a11 Mon Sep 17 00:00:00 2001 From: sephiroth99 Date: Wed, 30 Dec 2015 14:25:41 -0500 Subject: [PATCH] debug_window: Ignore other breakpoint types In the breakpoints pane, add a default case for breakpoint types that ignores the other possible types. --- src/xenia/debug/ui/debug_window.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/xenia/debug/ui/debug_window.cc b/src/xenia/debug/ui/debug_window.cc index 0c1996c1f..7a80528a6 100644 --- a/src/xenia/debug/ui/debug_window.cc +++ b/src/xenia/debug/ui/debug_window.cc @@ -1344,6 +1344,10 @@ void DebugWindow::DrawBreakpointsPane() { } break; } + default: { + // Ignored. + break; + } } } if (ImGui::BeginPopupContextItem("##breakpoint_context_menu")) {