Skip to content

Commit

Permalink
fix a compile err
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead committed Apr 14, 2024
1 parent ffa5c64 commit d67a23f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Marlin/src/lcd/e3v2/proui/dwin.h
Original file line number Diff line number Diff line change
Expand Up @@ -373,10 +373,10 @@ void drawMaxAccelMenu();
#undef MESH_MAX_X
#undef MESH_MIN_Y
#undef MESH_MAX_Y
#define MESH_MIN_X hmiData.mesh_inset_min_x
#define MESH_MAX_X hmiData.mesh_inset_max_x
#define MESH_MIN_Y hmiData.mesh_inset_min_y
#define MESH_MAX_Y hmiData.mesh_inset_max_y
#define MESH_MIN_X hmiData.mesh_min_x
#define MESH_MAX_X hmiData.mesh_max_x
#define MESH_MIN_Y hmiData.mesh_min_y
#define MESH_MAX_Y hmiData.mesh_max_y
#endif

#if PROUI_TUNING_GRAPH
Expand Down

0 comments on commit d67a23f

Please sign in to comment.