lcd_clicked fix

This commit is contained in:
PavelSindler 2018-09-06 20:54:51 +02:00
parent c24f673399
commit 48f5da9cb8

View file

@ -687,7 +687,7 @@ LongTimer lcd_timeoutToStatus;
uint8_t lcd_clicked(void)
{
bool clicked = LCD_CLICKED;
if(clicked) lcd_button_pressed = 1;
if(clicked) lcd_button_pressed = 0;
return clicked;
}