From 5d89f79d07ca4540341a545dafa9bdddfae484ad Mon Sep 17 00:00:00 2001 From: StackZ <47382115+SuperSaiyajinStackZ@users.noreply.github.com> Date: Wed, 15 Jul 2020 18:45:26 +0200 Subject: [PATCH] Use Bottom BG Color + `0, 0, 0, 190`. --- source/overlays/ColorSelection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/overlays/ColorSelection.cpp b/source/overlays/ColorSelection.cpp index ecdca5a..fe33f24 100644 --- a/source/overlays/ColorSelection.cpp +++ b/source/overlays/ColorSelection.cpp @@ -72,7 +72,7 @@ static void Draw(u8 r, u8 g, u8 b) { Gui::DrawStringCentered(0, config->useBars() ? 0 : 2, 0.7f, config->textColor(), Lang::get("SELECT_RGB_COLOR"), 400); Gui::DrawStringCentered(0, (240-Gui::GetStringHeight(0.7f, Lang::get("UI_COLOR_BEHAVIOUR")))/2, 0.7f, config->textColor(), Lang::get("UI_COLOR_BEHAVIOUR"), 390, 70); Gui::ScreenDraw(Bottom); - Gui::Draw_Rect(0, 0, 320, 240, C2D_Color32(255, 255, 255, 190)); + Gui::Draw_Rect(0, 0, 320, 240, config->bottomBG() + C2D_Color32(0, 0, 0, 190)); DrawRGBColor(r, g, b); C3D_FrameEnd(0); }