From c8a514259379d38579809fc931f527670bde749f Mon Sep 17 00:00:00 2001 From: minenice55 Date: Sun, 15 Feb 2026 23:41:21 -0500 Subject: [PATCH] fix spacing --- src/sdl/i_video.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sdl/i_video.cpp b/src/sdl/i_video.cpp index 57ebb309a..3d84e609d 100644 --- a/src/sdl/i_video.cpp +++ b/src/sdl/i_video.cpp @@ -965,7 +965,7 @@ static void Impl_HandleControllerSensorEvent(SDL_GamepadSensorEvent evt) // data[0]: delta pitch in rad/s // data[1]: delta yaw in rad/s // data[2]: delta roll in rad/s -case SDL_SENSOR_GYRO: + case SDL_SENSOR_GYRO: #define RAD2DEG 57.295779513f event.type = ev_gyroscope; event.data1 = FixedAngle(FLOAT_TO_FIXED(RAD2DEG * evt.data[0]));