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:
parent
6b31ddfb42
commit
b0bce0d9ab
|
@ -1344,6 +1344,10 @@ void DebugWindow::DrawBreakpointsPane() {
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
default: {
|
||||||
|
// Ignored.
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (ImGui::BeginPopupContextItem("##breakpoint_context_menu")) {
|
if (ImGui::BeginPopupContextItem("##breakpoint_context_menu")) {
|
||||||
|
|
Loading…
Reference in New Issue