From dca6846eb2c47b01255971f343f5703410a930ee Mon Sep 17 00:00:00 2001 From: WSAL Evan Date: Mon, 6 Oct 2025 19:05:38 -0400 Subject: [PATCH] Fixed Logger for Linux 2 --- include/wv/Logger.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/wv/Logger.h b/include/wv/Logger.h index af297d6..c9a65b0 100644 --- a/include/wv/Logger.h +++ b/include/wv/Logger.h @@ -104,9 +104,9 @@ namespace WillowVox SetColor(15, 0); printf("\n"); #else - printf(colorType "[%02d:%02d:%02d %s] %s", now.tm_hour, now.tm_min, now.tm_sec, (engine ? "Engine" : "App"), pre); + printf("%s[%02d:%02d:%02d %s] %s", colorType, now.tm_hour, now.tm_min, now.tm_sec, (engine ? "Engine" : "App"), pre); printf(msg, args...); - printf(colorType "\n"); + printf(LOG_COLOR_RESET "\n"); #endif }