[glass] Change match times for rebuilt (#8575)

The timer has changed for rebuilt's auto and teleop.
This commit is contained in:
NotTacos
2026-02-06 22:39:12 -07:00
committed by GitHub
parent 0a37317467
commit 664484306c

View File

@@ -71,11 +71,11 @@ void glass::DisplayFMS(FMSModel* model, bool editableDsAttached) {
}
ImGui::SameLine();
if (ImGui::Button("Auto") && !enabled) {
model->SetMatchTime(15.0);
model->SetMatchTime(20.0);
}
ImGui::SameLine();
if (ImGui::Button("Teleop") && !enabled) {
model->SetMatchTime(135.0);
model->SetMatchTime(140.0);
}
}