ifdef for mk2

This commit is contained in:
NotaRobotexe 2019-06-24 18:01:49 +02:00
parent b5168bd6c2
commit 3e9dc91cef

View file

@ -6486,9 +6486,14 @@ static void lcd_main_menu()
} }
else else
{ {
checkFanSpeed(); //Check manually to get most recent fan speed status #ifdef FANCHECK
if(fan_check_error == EFCE_OK) checkFanSpeed(); //Check manually to get most recent fan speed status
MENU_ITEM_SUBMENU_P(_i("Resume print"), lcd_resume_print);////MSG_RESUME_PRINT if(fan_check_error == EFCE_OK)
MENU_ITEM_SUBMENU_P(_i("Resume print"), lcd_resume_print);////MSG_RESUME_PRINT
#else
MENU_ITEM_SUBMENU_P(_i("Resume print"), lcd_resume_print);////MSG_RESUME_PRINT
#endif
} }
MENU_ITEM_SUBMENU_P(_T(MSG_STOP_PRINT), lcd_sdcard_stop); MENU_ITEM_SUBMENU_P(_T(MSG_STOP_PRINT), lcd_sdcard_stop);
} }