fix typo in log

This commit is contained in:
tildearrow 2021-12-19 02:18:40 -05:00
parent fbcc9ff4be
commit 8bdbd1074f

View file

@ -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);