🐛 Fix sprintf_P compile error (Maple) (#22479)

This commit is contained in:
ellensp 2021-08-01 19:09:29 +12:00 committed by Scott Lahteine
parent ffde284288
commit bc773e9c96

View File

@ -559,7 +559,7 @@ void DGUSScreenHandler::HandleStepPerMMExtruderChanged(DGUS_VP_Variable &var, vo
#endif
#if ENABLED(PIDTEMPBED)
case VP_PID_AUTOTUNE_BED:
sprintf_P(buf, PSTR("M303 E-1 C5 S70 U1"));
strcpy_P(buf, PSTR("M303 E-1 C5 S70 U1"));
break;
#endif
}