From fa6ef1d04e080a12534930961b4505c52dc9fe36 Mon Sep 17 00:00:00 2001 From: Stenzek Date: Sat, 30 Sep 2023 17:08:38 +1000 Subject: [PATCH] Log: Fix system console --- src/common/log.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/log.cpp b/src/common/log.cpp index 8473b1daf..1e80e7574 100644 --- a/src/common/log.cpp +++ b/src/common/log.cpp @@ -315,7 +315,7 @@ void Log::SetConsoleOutputParams(bool enabled, bool timestamps) { std::unique_lock lock(s_callback_mutex); - s_console_output_enabled = timestamps; + s_console_output_timestamps = timestamps; if (s_console_output_enabled == enabled) return;