1
0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2024-11-23 12:04:19 +00:00
This commit is contained in:
Scott Lahteine 2019-02-04 06:11:17 -06:00
parent 2f176d6fb8
commit d97bb4c41c

View File

@ -104,10 +104,10 @@ void menu_main() {
START_MENU();
MENU_BACK(MSG_WATCH);
const bool busy = printer_busy(),
const bool busy = printer_busy()
#if ENABLED(SDSUPPORT)
card_detected = card.isDetected(),
card_open = card_detected && card.isFileOpen()
, card_detected = card.isDetected()
, card_open = card_detected && card.isFileOpen()
#endif
;