From bd2acfa34968c119c68c3f0e89b040e90e5bce26 Mon Sep 17 00:00:00 2001 From: kalaposfos13 <153381648+kalaposfos13@users.noreply.github.com> Date: Tue, 15 Oct 2024 07:25:44 +0200 Subject: [PATCH] Mouse movement input is now off by default --- src/sdl_window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sdl_window.cpp b/src/sdl_window.cpp index 013c6dade..88a611538 100644 --- a/src/sdl_window.cpp +++ b/src/sdl_window.cpp @@ -247,7 +247,7 @@ std::map axis_map = {}; int mouse_joystick_binding = 0; Uint32 mouse_polling_id = 0; -bool mouse_enabled = true, leftjoystick_halfmode = false, rightjoystick_halfmode = false; +bool mouse_enabled = false, leftjoystick_halfmode = false, rightjoystick_halfmode = false; // i wrapped it in a function so I can collapse it std::string getDefaultConfig() {