Made comment about weird CLion on Windows quirk.

This commit is contained in:
2024-07-02 11:50:01 -04:00
parent c4d41454f6
commit bc281ec794

View File

@@ -141,6 +141,8 @@ void printRGBScale(std::vector<rgbColor> cs)
* the terminal is capable of outputting 16 million colors.
* If the change is not visible IE most of it looks to be the
* same shade then it is not capable.
*
* QUIRK: The console test fails on Clion's CMD Prompt (Windows). Windows CMD Prompt is fine
*/
void printRGBConsoleTest()
{
@@ -177,5 +179,7 @@ int main()
printRGBConsoleTest();
std::cout << mcolor::toEscapeCode(rgbColor(10,0,0)) << "ASS" << std::endl;
return 0;
}