diff --git a/src/log.cpp b/src/log.cpp index e27cb3673..f601286b9 100644 --- a/src/log.cpp +++ b/src/log.cpp @@ -55,7 +55,7 @@ int logE(const char* format, ...) { #ifdef _WIN32 printf("[ERROR] "); #else - printf("\x0b[1;31m[ERROR]\x1b[m "); + printf("\x1b[1;31m[ERROR]\x1b[m "); #endif va_start(va,format); ret=vprintf(format,va);