More IntelliSense-friendly declarations
This commit is contained in:
committed by
Scott Lahteine
parent
da4b6896f7
commit
2d2291d00e
@ -536,7 +536,9 @@ void ST7920_Lite_Status_Screen::draw_heat_icon(const bool whichIcon, const bool
|
||||
static struct {
|
||||
bool E1_show_target : 1;
|
||||
bool E2_show_target : 1;
|
||||
TERN_(HAS_HEATED_BED, bool bed_show_target : 1);
|
||||
#if ENABLED(HAS_HEATED_BED)
|
||||
bool bed_show_target : 1;
|
||||
#endif
|
||||
} display_state = {
|
||||
true, true, TERN_(HAS_HEATED_BED, true)
|
||||
};
|
||||
|
Reference in New Issue
Block a user