Add parentheses to card macros

This commit is contained in:
Scott Lahteine
2018-10-19 14:19:51 -05:00
parent d8caa7ddf0
commit 86ac4683dd
5 changed files with 18 additions and 18 deletions

View File

@@ -803,7 +803,7 @@ static void lcd_implementation_status_screen() {
#if ENABLED(SDSUPPORT)
lcd.setCursor(0, 2);
lcd_printPGM(PSTR("SD"));
if (IS_SD_PRINTING)
if (IS_SD_PRINTING())
lcd.print(itostr3(card.percentDone()));
else
lcd_printPGM(PSTR("---"));
@@ -867,7 +867,7 @@ static void lcd_implementation_status_screen() {
lcd.setCursor(7, 2);
lcd_printPGM(PSTR("SD"));
if (IS_SD_PRINTING)
if (IS_SD_PRINTING())
lcd.print(itostr3(card.percentDone()));
else
lcd_printPGM(PSTR("---"));