Browse Source

Followup to e10943d0

pull/1/head
Scott Lahteine 5 years ago
parent
commit
d97bb4c41c
  1. 6
      Marlin/src/lcd/menu/menu_main.cpp

6
Marlin/src/lcd/menu/menu_main.cpp

@ -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
;

Loading…
Cancel
Save