From 4440574baa69d3ab66e9fcf12187f5eb369f5b59 Mon Sep 17 00:00:00 2001 From: wiidev Date: Sun, 8 Nov 2020 21:29:08 +0000 Subject: [PATCH] Don't make cases totally black as they're not IRL --- source/prompts/gameinfo.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/source/prompts/gameinfo.cpp b/source/prompts/gameinfo.cpp index 215e32a4..e8cd890f 100644 --- a/source/prompts/gameinfo.cpp +++ b/source/prompts/gameinfo.cpp @@ -409,6 +409,11 @@ static int InternalShowGameInfo(struct discHdr *header) { boxCov->SetBoxColor((GXColor) { 198, 34, 4, 255 }); } + else if(GameInfo.CaseColor == 0x000000) + { + // None of the cases are totally black + boxCov->SetBoxColor((GXColor) { 30, 30, 30, 255 }); + } else if(GameInfo.CaseColor >= 0) { u8 * Color = (u8 *) &GameInfo.CaseColor;