Commit 7ed48381 authored by Simone Primarosa's avatar Simone Primarosa

BAD variable name FIX

parent 93ebd8c9
...@@ -311,12 +311,12 @@ static void lcd_status_screen() { ...@@ -311,12 +311,12 @@ static void lcd_status_screen() {
#if HAS_LCD_FILAMENT_SENSOR || HAS_LCD_POWER_SENSOR #if HAS_LCD_FILAMENT_SENSOR || HAS_LCD_POWER_SENSOR
#if HAS_LCD_FILAMENT_SENSOR && HAS_LCD_POWER_SENSOR #if HAS_LCD_FILAMENT_SENSOR && HAS_LCD_POWER_SENSOR
if (millis() > message_millis + 15000) if (millis() > previous_lcd_status_ms + 15000)
#else #else
if (millis() > message_millis + 10000) if (millis() > previous_lcd_status_ms + 10000)
#endif #endif
{ {
message_millis = millis(); previous_lcd_status_ms = millis();
} }
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment