Skip to content

Commit 7a653f9

Browse files
committed
🩹 Fix ProUI compile
1 parent 60cd1ec commit 7a653f9

File tree

1 file changed

+2
-3
lines changed
  • Marlin/src/lcd/e3v2/proui

1 file changed

+2
-3
lines changed

Marlin/src/lcd/e3v2/proui/dwin.h

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ static constexpr size_t eeprom_data_size = sizeof(HMI_data_t);
142142
typedef struct {
143143
int8_t Color[3]; // Color components
144144
#if HAS_PID_HEATING
145-
tempcontrol_t pidresult = PID_DONE;
145+
pidresult_t pidresult = PID_DONE;
146146
#endif
147147
uint8_t Select = 0; // Auxiliary selector variable
148148
AxisEnum axis = X_AXIS; // Axis Select
@@ -358,12 +358,11 @@ void Draw_Steps_Menu();
358358

359359
// PID
360360
#if HAS_PID_HEATING
361-
void DWIN_PidTuning(tempcontrol_t result);
361+
void DWIN_PidTuning(pidresult_t result);
362362
#if ENABLED(PIDTEMP)
363363
void Draw_HotendPID_Menu();
364364
#endif
365365
#if ENABLED(PIDTEMPBED)
366366
void Draw_BedPID_Menu();
367367
#endif
368368
#endif
369-
#endif

0 commit comments

Comments
 (0)