AK: Disable assertion output colors on windows

This commit is contained in:
Ali Mohammad Pur 2023-10-29 08:49:24 +03:30 committed by Andreas Kling
parent 4b60a99573
commit cafe60d713
Notes: sideshowbarker 2024-07-17 08:35:21 +09:00

View File

@ -91,6 +91,8 @@ void ak_verification_failed(char const* message)
{
# if defined(AK_OS_SERENITY) || defined(AK_OS_ANDROID)
bool colorize_output = true;
# elif defined(AK_OS_WINDOWS)
bool colorize_output = false;
# else
bool colorize_output = isatty(STDERR_FILENO) == 1;
# endif