From cfd7aff5360889bb12b68e8238761d5ed3390834 Mon Sep 17 00:00:00 2001 From: fallenoak Date: Sun, 9 Apr 2023 12:58:43 -0500 Subject: [PATCH] fix(console): correct alpha value for console background --- src/console/Screen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/console/Screen.cpp b/src/console/Screen.cpp index 31fe6aa..caacd49 100644 --- a/src/console/Screen.cpp +++ b/src/console/Screen.cpp @@ -31,7 +31,7 @@ static CImVector s_colorArray[] = { { 0xFF, 0xFF, 0xFF, 0xFF }, // GLOBAL_COLOR { 0xFF, 0xFF, 0xFF, 0xFF }, // ADMIN_COLOR { 0xFF, 0xFF, 0xFF, 0x80 }, // HIGHLIGHT_COLOR - { 0x00, 0x00, 0x00, 0x80 }, // BACKGROUND_COLOR + { 0x00, 0x00, 0x00, 0xC0 }, // BACKGROUND_COLOR }; void DrawBackground() {