diff --git a/modules/Window/src/WindowImpl/GLFW/windowGLFW.cpp b/modules/Window/src/WindowImpl/GLFW/windowGLFW.cpp index 9ca0224..f654359 100644 --- a/modules/Window/src/WindowImpl/GLFW/windowGLFW.cpp +++ b/modules/Window/src/WindowImpl/GLFW/windowGLFW.cpp @@ -3,6 +3,10 @@ Window::Window() { + + glfwSetErrorCallback([](int e, const char* m){ + std::cout << "GLFW Error: " << m << std::endl; + }); if(!glfwInit()) { std::cout << "glfwInit failed!\n"; std::abort();