mirror of
https://github.com/raysan5/raylib.git
synced 2025-10-07 10:26:28 +00:00
WARNING: REVIEWED: A big bug with GetMouseWheelMove()
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user