From b34c0365ab0db5697a683104ce341672b668997c Mon Sep 17 00:00:00 2001 From: arQon <(none)> Date: Thu, 19 Jan 2017 10:08:59 -0800 Subject: [PATCH] red means error. always has, always will. let's keep it that way --- code/client/cl_main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/client/cl_main.cpp b/code/client/cl_main.cpp index 9e38310..ae90063 100644 --- a/code/client/cl_main.cpp +++ b/code/client/cl_main.cpp @@ -1715,7 +1715,7 @@ static void QDECL CL_RefPrintf( printParm_t print_level, const char* fmt, ... ) } else if ( print_level == PRINT_WARNING ) { Com_Printf( S_COLOR_YELLOW "%s", msg ); } else if ( print_level == PRINT_DEVELOPER ) { - Com_DPrintf( S_COLOR_RED "%s", msg ); + Com_DPrintf( S_COLOR_CYAN "%s", msg ); } }