mirror of
https://github.com/KhronosGroup/SPIRV-Tools
synced 2024-11-26 13:20:05 +00:00
Windows: Increase intensity of blue text
This commit is contained in:
parent
4fe8e389a7
commit
0167758727
@ -80,7 +80,10 @@ clr::yellow::operator const char*() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
clr::blue::operator const char*() {
|
clr::blue::operator const char*() {
|
||||||
SetConsoleForegroundColor(FOREGROUND_BLUE);
|
// Blue all by itself is hard to see against a black background (the
|
||||||
|
// default on command shell), or a medium blue background (the default
|
||||||
|
// on PowerShell). So increase its intensity.
|
||||||
|
SetConsoleForegroundColor(FOREGROUND_BLUE | FOREGROUND_INTENSITY);
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user