This commit is contained in:
quflax
2023-12-27 13:39:23 +02:00
parent 69a17c25ea
commit 95c713bc4d
3 changed files with 6 additions and 28 deletions
-2
View File
@@ -163,7 +163,6 @@ int Window::initialize(DisplaySettings& settings){
glEnable(GL_BLEND);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
Events::initialize();
glfwSetKeyCallback(window, key_callback);
glfwSetMouseButtonCallback(window, mouse_button_callback);
glfwSetCursorPosCallback(window, cursor_position_callback);
@@ -255,7 +254,6 @@ void Window::popScissor() {
}
void Window::terminate(){
Events::finalize();
glfwTerminate();
}