From 7c1889c28205b83afaa39da73f1831a72bd9c502 Mon Sep 17 00:00:00 2001 From: raysan5 Date: Tue, 24 Aug 2021 15:26:59 +0200 Subject: [PATCH] REVIEWED: Support mouse wheel on x-axis #1948 --- src/core.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/core.c b/src/core.c index 52245b80a..aff8cdd35 100644 --- a/src/core.c +++ b/src/core.c @@ -5059,7 +5059,8 @@ static void MouseCursorPosCallback(GLFWwindow *window, double x, double y) // GLFW3 Srolling Callback, runs on mouse wheel static void MouseScrollCallback(GLFWwindow *window, double xoffset, double yoffset) { - CORE.Input.Mouse.currentWheelMove = (float)yoffset; + if (xoffset != 0.0) CORE.Input.Mouse.currentWheelMove = (float)xoffset; + else CORE.Input.Mouse.currentWheelMove = (float)yoffset; } // GLFW3 CursorEnter Callback, when cursor enters the window