From 3521f50d1b6d61880e25c8f00d8452d1f4aaf96b Mon Sep 17 00:00:00 2001 From: maelstrom Date: Fri, 25 Jul 2025 19:14:25 +0200 Subject: [PATCH] fix: glfw error not properly formatted, so format args were ignored --- client/src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/main.cpp b/client/src/main.cpp index e4b52db..418f8fb 100644 --- a/client/src/main.cpp +++ b/client/src/main.cpp @@ -91,7 +91,7 @@ int main() { } void errorCatcher(int id, const char* str) { - Logger::fatalErrorf("GLFW Error: [{}] {}", id, str); + Logger::fatalErrorf("GLFW Error: [%d] %s", id, str); } float lastTime;