0
0
Fork 0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2025-01-23 01:58:59 +00:00

🩹 Fix ProUI compile

This commit is contained in:
Scott Lahteine 2023-11-21 21:41:33 -06:00
parent 60cd1ecb69
commit 7a653f9763

View file

@ -142,7 +142,7 @@ static constexpr size_t eeprom_data_size = sizeof(HMI_data_t);
typedef struct {
int8_t Color[3]; // Color components
#if HAS_PID_HEATING
tempcontrol_t pidresult = PID_DONE;
pidresult_t pidresult = PID_DONE;
#endif
uint8_t Select = 0; // Auxiliary selector variable
AxisEnum axis = X_AXIS; // Axis Select
@ -358,7 +358,7 @@ void Draw_Steps_Menu();
// PID
#if HAS_PID_HEATING
void DWIN_PidTuning(tempcontrol_t result);
void DWIN_PidTuning(pidresult_t result);
#if ENABLED(PIDTEMP)
void Draw_HotendPID_Menu();
#endif
@ -366,4 +366,3 @@ void Draw_Steps_Menu();
void Draw_BedPID_Menu();
#endif
#endif
#endif