diff --git a/modules/Window/src/WindowImpl/GLFW/windowGLFW.cpp b/modules/Window/src/WindowImpl/GLFW/windowGLFW.cpp index 5efc823..9ca0224 100644 --- a/modules/Window/src/WindowImpl/GLFW/windowGLFW.cpp +++ b/modules/Window/src/WindowImpl/GLFW/windowGLFW.cpp @@ -18,7 +18,7 @@ Window::Window() { } bool Window::shouldClose() { - return glfwShouldClose(w); + return glfwWindowShouldClose(w); } void Window::doFrame() {