0
0
Fork 0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2025-03-15 02:36:19 +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 { typedef struct {
int8_t Color[3]; // Color components int8_t Color[3]; // Color components
#if HAS_PID_HEATING #if HAS_PID_HEATING
tempcontrol_t pidresult = PID_DONE; pidresult_t pidresult = PID_DONE;
#endif #endif
uint8_t Select = 0; // Auxiliary selector variable uint8_t Select = 0; // Auxiliary selector variable
AxisEnum axis = X_AXIS; // Axis Select AxisEnum axis = X_AXIS; // Axis Select
@ -358,7 +358,7 @@ void Draw_Steps_Menu();
// PID // PID
#if HAS_PID_HEATING #if HAS_PID_HEATING
void DWIN_PidTuning(tempcontrol_t result); void DWIN_PidTuning(pidresult_t result);
#if ENABLED(PIDTEMP) #if ENABLED(PIDTEMP)
void Draw_HotendPID_Menu(); void Draw_HotendPID_Menu();
#endif #endif
@ -366,4 +366,3 @@ void Draw_Steps_Menu();
void Draw_BedPID_Menu(); void Draw_BedPID_Menu();
#endif #endif
#endif #endif
#endif