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