Skip to content

Commit

Permalink
🩹 Fix ProUI compile
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead committed Nov 22, 2023
1 parent 60cd1ec commit 7a653f9
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Marlin/src/lcd/e3v2/proui/dwin.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -358,12 +358,11 @@ 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
#if ENABLED(PIDTEMPBED)
void Draw_BedPID_Menu();
#endif
#endif
#endif

0 comments on commit 7a653f9

Please sign in to comment.