From 4219beed713b6d921e904364a89b4e9e2095fee2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gu=C3=B0ni=20M=C3=A1r=20Gilbert?= Date: Sun, 11 Dec 2022 10:29:59 +0000 Subject: [PATCH] Remove initial cursor setting The cursor position is controlled by the for-loop Change in memory: Flash: -8 bytes SRAM: 0 bytes --- Firmware/ultralcd.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Firmware/ultralcd.cpp b/Firmware/ultralcd.cpp index f16481f2e..8322d21a9 100644 --- a/Firmware/ultralcd.cpp +++ b/Firmware/ultralcd.cpp @@ -3006,7 +3006,6 @@ static inline bool pgm_is_interpunction(const char *c_addr) */ static const char* lcd_display_message_fullscreen_nonBlocking_P(const char *msg) { - lcd_set_cursor(0, 0); const char *msgend = msg; bool multi_screen = false; for (uint8_t row = 0; row < LCD_HEIGHT; ++ row) {