From b29311c7cacf17b3512d837951d9e02fceae586f Mon Sep 17 00:00:00 2001 From: Doyle Date: Tue, 6 Oct 2020 05:16:23 +1100 Subject: mouse: Return float movement for precise scrolling where possible (#1397) --- projects/Notepad++/raylib_npp_parser/raylib_to_parse.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'projects/Notepad++/raylib_npp_parser/raylib_to_parse.h') diff --git a/projects/Notepad++/raylib_npp_parser/raylib_to_parse.h b/projects/Notepad++/raylib_npp_parser/raylib_to_parse.h index 1240cd5b..7ef12f93 100644 --- a/projects/Notepad++/raylib_npp_parser/raylib_to_parse.h +++ b/projects/Notepad++/raylib_npp_parser/raylib_to_parse.h @@ -147,7 +147,7 @@ RLAPI Vector2 GetMousePosition(void); // Returns mouse p RLAPI void SetMousePosition(int x, int y); // Set mouse position XY RLAPI void SetMouseOffset(int offsetX, int offsetY); // Set mouse offset RLAPI void SetMouseScale(float scaleX, float scaleY); // Set mouse scaling -RLAPI int GetMouseWheelMove(void); // Returns mouse wheel movement Y +RLAPI float GetMouseWheelMove(void); // Returns mouse wheel movement Y // Input-related functions: touch RLAPI int GetTouchX(void); // Returns touch position X for touch point 0 (relative to screen size) -- cgit v1.2.3