Remove obsolete test conditions (#12829)

This commit is contained in:
Giuliano Zaro 2019-01-05 21:02:45 +01:00 committed by Scott Lahteine
parent bcf347403b
commit 709a6356f7
2 changed files with 2 additions and 2 deletions

View File

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

View File

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