From 73446350b357ae64df86305d37c97fb81092c6e4 Mon Sep 17 00:00:00 2001 From: gheskett Date: Mon, 26 Jul 2021 04:26:45 -0500 Subject: [PATCH] Logged minor color related bug --- src/game/ingame_menu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/ingame_menu.c b/src/game/ingame_menu.c index 039b5164..b8682cd8 100644 --- a/src/game/ingame_menu.c +++ b/src/game/ingame_menu.c @@ -877,7 +877,7 @@ void handle_dialog_text_and_pages(s8 colorMode, struct DialogEntry *dialog, s8 l strIdx++; for (colorLoop = strIdx + 8; strIdx < colorLoop; ++strIdx) { if (str[strIdx] >= 0x24 && str[strIdx] <= 0x29) { - str[strIdx] -= 0x1A; + str[strIdx] -= 0x1A; // This can technically cause undesirable capitalization if invalid color syntax is used. } else if (str[strIdx] >= 0x10) { customColor = 2;