debug_window: Ignore other breakpoint types

In the breakpoints pane, add a default case for breakpoint types that
ignores the other possible types.
This commit is contained in:
sephiroth99 2015-12-30 14:25:41 -05:00
parent 6b31ddfb42
commit b0bce0d9ab
1 changed files with 4 additions and 0 deletions

View File

@ -1344,6 +1344,10 @@ void DebugWindow::DrawBreakpointsPane() {
}
break;
}
default: {
// Ignored.
break;
}
}
}
if (ImGui::BeginPopupContextItem("##breakpoint_context_menu")) {