From 17e085040c977d54423c20724b4aaec6f0f832b8 Mon Sep 17 00:00:00 2001 From: Alex Voinea Date: Mon, 24 Apr 2023 10:44:48 +0200 Subject: [PATCH] Add missing line to custom character Shouldn't make a difference since the array is already defined as 8B long, but I just found it weird and surprising when I noticed only 7 lines were defined --- Firmware/lcd.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Firmware/lcd.cpp b/Firmware/lcd.cpp index cc640a2ca..2027b84da 100644 --- a/Firmware/lcd.cpp +++ b/Firmware/lcd.cpp @@ -948,6 +948,7 @@ const uint8_t lcd_chardata_confirm[8] PROGMEM = { 0b10110, 0b11100, 0b01000, + 0b00000, 0b00000}; void lcd_set_custom_characters_nextpage(void)