Explorar el Código

Remove obsolete test conditions (#12829)

Giuliano Zaro hace 5 años
padre
commit
709a6356f7
Se han modificado 2 ficheros con 2 adiciones y 2 borrados
  1. 1
    1
      Marlin/src/gcode/gcode.cpp
  2. 1
    1
      Marlin/src/gcode/gcode.h

+ 1
- 1
Marlin/src/gcode/gcode.cpp Ver fichero

@@ -336,7 +336,7 @@ void GcodeSuite::process_parsed_command(
336 336
         case 49: M49(); break;                                    // M49: Turn on or off G26 debug flag for verbose output
337 337
       #endif
338 338
 
339
-      #if ENABLED(LCD_SET_PROGRESS_MANUALLY) && (ENABLED(ULTRA_LCD) || ENABLED(EXTENSIBLE_UI))
339
+      #if ENABLED(LCD_SET_PROGRESS_MANUALLY)
340 340
         case 73: M73(); break;                                    // M73: Set progress percentage (for display on LCD)
341 341
       #endif
342 342
 

+ 1
- 1
Marlin/src/gcode/gcode.h Ver fichero

@@ -488,7 +488,7 @@ private:
488 488
     static void M49();
489 489
   #endif
490 490
 
491
-  #if ENABLED(LCD_SET_PROGRESS_MANUALLY) && (ENABLED(ULTRA_LCD) || ENABLED(EXTENSIBLE_UI))
491
+  #if ENABLED(LCD_SET_PROGRESS_MANUALLY)
492 492
     static void M73();
493 493
   #endif
494 494
 

Loading…
Cancelar
Guardar