From 8bdbd1074f51332048efeb7efa062a1238be9caa Mon Sep 17 00:00:00 2001 From: tildearrow Date: Sun, 19 Dec 2021 02:18:40 -0500 Subject: [PATCH] fix typo in log --- src/log.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);