Scott Lahteine 6 years ago
parent
commit
2fb2e286ee
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Marlin/src/lcd/HD44780/ultralcd_impl_HD44780.cpp

+ 2
- 2
Marlin/src/lcd/HD44780/ultralcd_impl_HD44780.cpp View File

@@ -861,9 +861,9 @@ FORCE_INLINE void _draw_status_message(const bool blink) {
861 861
         #if HAS_PRINT_PROGRESS
862 862
           _draw_print_progress();
863 863
         #else
864
+          char c;
865
+          int per;
864 866
           #if HAS_FAN0
865
-            char c;
866
-            int per;
867 867
             if (blink) {
868 868
               c = 'F';
869 869
               per = ((int(fan_speed[0]) + 1) * 100) / 256;

Loading…
Cancel
Save