mirror of https://github.com/PCSX2/pcsx2.git
console: improve readability on consoles that have black backgrounds
Thanks Micove for the patch. Close issue #383
This commit is contained in:
parent
dc1cd3eb25
commit
0b77f93154
|
@ -109,7 +109,7 @@ static __fi const wxChar* GetLinuxConsoleColor(ConsoleColors color)
|
|||
{
|
||||
switch(color)
|
||||
{
|
||||
case Color_Black: return L"\033[30m";
|
||||
case Color_Black:
|
||||
case Color_StrongBlack: return L"\033[30m\033[1m";
|
||||
|
||||
case Color_Red: return L"\033[31m";
|
||||
|
|
Loading…
Reference in New Issue