From 1a157c72567d53819c07d0327a32c5dda9b6b273 Mon Sep 17 00:00:00 2001 From: WerWolv Date: Sun, 29 Aug 2021 22:17:43 +0200 Subject: [PATCH] sys: Fixed variable name copy-paste --- source/init/splash_window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/init/splash_window.cpp b/source/init/splash_window.cpp index 470da287d..dc492041c 100644 --- a/source/init/splash_window.cpp +++ b/source/init/splash_window.cpp @@ -146,7 +146,7 @@ namespace hex::init { } void WindowSplash::initGLFW() { - glfwSetErrorCallback([](int error, const char *description) { + glfwSetErrorCallback([](int error, const char *desc) { log::error("GLFW Error [{}] : {}", error, desc); });