From 5176a1519906c78d6c136ae5c5c04a0bf8dd6e91 Mon Sep 17 00:00:00 2001 From: sanni Date: Tue, 21 Nov 2023 09:43:00 +0100 Subject: [PATCH] Update ARC.ino Fix compilation error in combination with ENABLE_UPDATER --- Cart_Reader/ARC.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cart_Reader/ARC.ino b/Cart_Reader/ARC.ino index 169e0b6..cba93dd 100644 --- a/Cart_Reader/ARC.ino +++ b/Cart_Reader/ARC.ino @@ -537,7 +537,7 @@ void checkCSV_ARC() { Serial.println(F("")); #endif } else { -#ifdef enable_OLED +#if (defined(enable_OLED) || defined(enable_LCD)) display.setCursor(0, 56); println_Msg(F("NO SELECTION")); display_Update(); @@ -577,4 +577,4 @@ void setCart_ARC() { #endif //****************************************** // End of File -//****************************************** \ No newline at end of file +//******************************************