From fb8732e97d2f6edfe9e6480996f4964b49a57cdf Mon Sep 17 00:00:00 2001 From: Nicolas Braud-Santoni Date: Thu, 5 May 2016 20:24:42 +0200 Subject: [PATCH] Eradicate remnents of BBGE_BUILD_GFLW & SDL --- BBGE/Core.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/BBGE/Core.cpp b/BBGE/Core.cpp index 7cfc365..cd48033 100644 --- a/BBGE/Core.cpp +++ b/BBGE/Core.cpp @@ -837,10 +837,6 @@ bool Core::initInputLibrary() { core->mouse.position = Vector(getWindowWidth()/2, getWindowHeight()/2); -#ifdef BBGE_BUILD_GFLW - glfwDisable(GLFW_MOUSE_CURSOR); - -#endif for (int i = 0; i < KEY_MAXARRAY; i++) { keys[i] = 0; @@ -2760,9 +2756,7 @@ void Core::shutdownJoystickLibrary() { if (joystickEnabled) { joystick.shutdown(); -#ifdef BBGE_BUIDL_SDL SDL_QuitSubSystem(SDL_INIT_JOYSTICK); -#endif joystickEnabled = false; } }