From bc29e0c6b7109a7d37bfc9837091aa0baedbf016 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Ha=C3=9Fel?= Date: Thu, 23 Jan 2025 22:35:49 +0100 Subject: [PATCH] made background of characters transparent --- src/display/Display.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/display/Display.h b/src/display/Display.h index f68cc2d..5ed6acd 100644 --- a/src/display/Display.h +++ b/src/display/Display.h @@ -161,8 +161,6 @@ public: for (uint8_t x = 0; x < DISPLAY_CHAR_WIDTH; ++x) { if (*(symbolBit++)) { set(xPos + x, yPos + y, color); - } else { - set(xPos + x, yPos + y, BLACK); } } } @@ -182,8 +180,6 @@ public: for (int x = 0; x < countof(sym[0]); ++x) { if (sym[y][x]) { set(xPos + x, yPos + y, color); - } else { - set(xPos + x, yPos + y, BLACK); } } }