From 0bdc2020b44b09312b43863fa51c93a13e649941 Mon Sep 17 00:00:00 2001 From: Niram7777 Date: Sun, 19 Apr 2026 22:15:38 +0200 Subject: [PATCH] HOTFIX: set_color not defined (#4285) lld-link: error: undefined symbol: public: void __cdecl spdlog::sinks::wincolor_sink::set_color(enum spdlog::level, unsigned short) --- src/common/logging/log.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/common/logging/log.cpp b/src/common/logging/log.cpp index 69d7f0419..3484cfe3a 100644 --- a/src/common/logging/log.cpp +++ b/src/common/logging/log.cpp @@ -170,8 +170,7 @@ void Setup(std::string_view log_filename) { #ifdef _WIN32 if (EmulatorSettings.GetLogType() == "wincolor") { - g_console_sink = - UpdateColorLevels(std::make_shared()); + g_console_sink = std::make_shared(); } else { g_console_sink = std::make_shared(); }