From 7eb341ccafa1cb39006b354714e4524a612c6e25 Mon Sep 17 00:00:00 2001 From: Ray Date: Sat, 1 Jan 2022 17:49:07 +0100 Subject: [PATCH] WARNING: REVIEWED: A big bug with `GetMouseWheelMove()` --- src/rcore.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rcore.c b/src/rcore.c index 0c1d9d4d7..7752a7cc8 100644 --- a/src/rcore.c +++ b/src/rcore.c @@ -3671,10 +3671,10 @@ float GetMouseWheelMove(void) return 0.0f; #endif #if defined(PLATFORM_WEB) - return CORE.Input.Mouse.previousWheelMove/100.0f; + return CORE.Input.Mouse.currentWheelMove/100.0f; #endif - return CORE.Input.Mouse.previousWheelMove; + return CORE.Input.Mouse.currentWheelMove; } // Set mouse cursor