Fix compiler warning sketch/ultralcd.cpp:53:31: warning: missing initializer for member 'MenuData::BabyStep::babystepMem' [-Wmissing-field-initializers]
This commit is contained in:
parent
453b199057
commit
cf069f3fc2
@ -50,7 +50,7 @@ static void lcd_sd_updir();
|
|||||||
|
|
||||||
// State of the currently active menu.
|
// State of the currently active menu.
|
||||||
// C Union manages sharing of the static memory by all the menus.
|
// C Union manages sharing of the static memory by all the menus.
|
||||||
union MenuData menuData = { 0 };
|
union MenuData menuData;
|
||||||
|
|
||||||
|
|
||||||
int8_t ReInitLCD = 0;
|
int8_t ReInitLCD = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user