summaryrefslogtreecommitdiffhomepage
path: root/src/core.c
diff options
context:
space:
mode:
authorRay <[email protected]>2021-03-19 18:20:14 +0100
committerRay <[email protected]>2021-03-19 18:20:14 +0100
commit3e25760950a87854a715449c4d6bbc9c55694a64 (patch)
tree5195172d0b318747f8f08eac9d8b9d6461451162 /src/core.c
parent8527dbc6e229fc02930f13e7470ebe07c4107ce4 (diff)
downloadraylib-3e25760950a87854a715449c4d6bbc9c55694a64.tar.gz
raylib-3e25760950a87854a715449c4d6bbc9c55694a64.zip
REMOVED: GetMouseCursor()
This function could be confusing depending on the context, it's better to let the user track the current active cursor
Diffstat (limited to 'src/core.c')
-rw-r--r--src/core.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/core.c b/src/core.c
index 6e427ef3..917522cb 100644
--- a/src/core.c
+++ b/src/core.c
@@ -3119,12 +3119,6 @@ float GetMouseWheelMove(void)
return CORE.Input.Mouse.previousWheelMove;
}
-// Returns mouse cursor
-int GetMouseCursor(void)
-{
- return CORE.Input.Mouse.cursor;
-}
-
// Set mouse cursor
// NOTE: This is a no-op on platforms other than PLATFORM_DESKTOP
void SetMouseCursor(int cursor)