fix(console): correct alpha value for console background

This commit is contained in:
fallenoak 2023-04-09 12:58:43 -05:00
parent 134d85bce6
commit cfd7aff536
No known key found for this signature in database
GPG Key ID: 7628F8E61AEA070D

View File

@ -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() {