fix: glfw error not properly formatted, so format args were ignored

This commit is contained in:
maelstrom 2025-07-25 19:14:25 +02:00
parent 11df6595c0
commit 3521f50d1b

View file

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