From 891e1c8f58d04b6e04f5de59464e56cddbdac3e4 Mon Sep 17 00:00:00 2001 From: Baoulettes Date: Mon, 16 May 2022 13:35:13 +0200 Subject: [PATCH] better behavior and default color fix --- soh/src/code/z_message_PAL.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/soh/src/code/z_message_PAL.c b/soh/src/code/z_message_PAL.c index fc3572b40..f549ed53f 100644 --- a/soh/src/code/z_message_PAL.c +++ b/soh/src/code/z_message_PAL.c @@ -473,9 +473,9 @@ void Message_DrawTextboxIcon(GlobalContext* globalCtx, Gfx** p, s16 x, s16 y) { sIconEnvColors[1][1] = 255; sIconEnvColors[1][2] = 130; } else if (CVar_GetS32("gHudColors", 1) == 2) { - sIconPrimColors[0][0] = (CVar_GetS32("gCCABtnPrimR", 4)/255)*80; - sIconPrimColors[0][1] = (CVar_GetS32("gCCABtnPrimG", 200)/255)*80; - sIconPrimColors[0][2] = (CVar_GetS32("gCCABtnPrimB", 80)/255)*80; + sIconPrimColors[0][0] = (CVar_GetS32("gCCABtnPrimR", 50)/255)*95; + sIconPrimColors[0][1] = (CVar_GetS32("gCCABtnPrimG", 255)/255)*95; + sIconPrimColors[0][2] = (CVar_GetS32("gCCABtnPrimB", 130)/255)*95; sIconPrimColors[1][0] = CVar_GetS32("gCCABtnPrimR", 50); sIconPrimColors[1][1] = CVar_GetS32("gCCABtnPrimG", 255); sIconPrimColors[1][2] = CVar_GetS32("gCCABtnPrimB", 130);