acid-drop

- Unnamed repository; edit this file 'description' to name the repository.
git clone git://git.acid.vegas/-c.git
Log | Files | Refs | Archive | README | LICENSE

commit 252e97f139aad9cd1b63b69c72b00f564d1cb389
parent 711e8dee5bdfdee083219ac65ff6c98b50cc23d2
Author: imnotacoder-eeeee <js7212805@gmail.com>
Date: Wed, 29 May 2024 21:34:07 -0400

multi-line doesnt seem bugged and joins still work, will work on the small gap in buffer at the bottom

Diffstat:
Msrc/main.ino | 6+++---

1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/main.ino b/src/main.ino
@@ -993,9 +993,9 @@ void displayLines() {
             String senderNick = line.substring(startIndex, endIndex);
             String actionMessage = line.substring(endIndex + 1);
             tft.setTextColor(nickColors[senderNick]);
-            tft.print(senderNick + " ");
-            tft.setTextColor(TFT_WHITE);
-            tft.print(actionMessage);
+            tft.print(senderNick);
+            tft.setTextColor(TFT_MAGENTA);
+            tft.print(" " + actionMessage);
             cursorY += CHAR_HEIGHT;
         } else {
             int colonIndex = line.indexOf(':');