From 9126e07ecae9f23b7bdc90c1b6cd8f09431d03e5 Mon Sep 17 00:00:00 2001 From: kalaposfos13 <153381648+kalaposfos13@users.noreply.github.com> Date: Fri, 13 Feb 2026 10:47:29 +0100 Subject: [PATCH] up is still not down --- src/input/controller.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input/controller.h b/src/input/controller.h index 38db66f0f..9360b23e1 100644 --- a/src/input/controller.h +++ b/src/input/controller.h @@ -127,7 +127,7 @@ public: float gyro_poll_rate; float accel_poll_rate; - float gyro_buf[3] = {0.0f, 0.0f, 0.0f}, accel_buf[3] = {0.0f, -9.81f, 0.0f}; + float gyro_buf[3] = {0.0f, 0.0f, 0.0f}, accel_buf[3] = {0.0f, 9.81f, 0.0f}; u32 user_id = -1; // ORBIS_USER_SERVICE_USER_ID_INVALID SDL_Gamepad* m_sdl_gamepad = nullptr; static constexpr int max_smoothing_ticks = 2;