Deleted double defining of same varibles
Redefining the same varibles 'long_press_active' lines 112+117; 'long_press_timer' lines 113+118; 'button_pressed' lines 115+119 generate errors during comping the code. Deleting the lines 117-119 solves it.
This commit is contained in:
parent
d7601d8880
commit
bd44db5a37
|
|
@ -114,10 +114,6 @@ long long_press_timer = millis();
|
|||
long button_blanking_time = millis();
|
||||
bool button_pressed = false;
|
||||
|
||||
bool long_press_active = false;
|
||||
long long_press_timer = millis();
|
||||
bool button_pressed = false;
|
||||
|
||||
bool menuExiting = false;
|
||||
|
||||
#ifdef FILAMENT_LCD_DISPLAY
|
||||
|
|
|
|||
Loading…
Reference in New Issue