🩹 Fix a serial_ternary

This commit is contained in:
Scott Lahteine 2023-03-18 21:57:06 -05:00
parent 7e25e87807
commit 9249f61a80

View file

@ -59,7 +59,7 @@ void unified_bed_leveling::report_current_mesh() {
void unified_bed_leveling::report_state() {
echo_name();
serial_ternary(planner.leveling_active, " System v" UBL_VERSION " ", nullptr, "in", "active\n");
serial_ternary(planner.leveling_active, F(" System v" UBL_VERSION " "), nullptr, F("in"), F("active\n"));
serial_delay(50);
}