From af63473724f192d7e082d18d25b97295a9a60b74 Mon Sep 17 00:00:00 2001 From: Yaram Date: Sun, 11 Aug 2019 16:41:26 +1000 Subject: [PATCH] Small fix in GetMouseY --- src/core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core.c b/src/core.c index 1dad59d99..930bd2597 100644 --- a/src/core.c +++ b/src/core.c @@ -2324,7 +2324,7 @@ int GetMouseX(void) int GetMouseY(void) { #if defined(PLATFORM_ANDROID) - return (int)touchPosition[0].x; + return (int)touchPosition[0].y; #else return (int)((mousePosition.y + mouseOffset.y)*mouseScale.y); #endif