From 96e5e0dfb2369ddc6ce7a2dc6af9d578615c1bf9 Mon Sep 17 00:00:00 2001 From: Rabia Alhaffar Date: Sat, 20 Mar 2021 02:18:44 +0200 Subject: [PATCH] Fixed funny typo mistake... (#1657) --- src/core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core.c b/src/core.c index bd0999675..166ec3bc8 100644 --- a/src/core.c +++ b/src/core.c @@ -2980,7 +2980,7 @@ bool IsGamepadButtonReleased(int gamepad, int button) return released; } -// Detect if a mouse button is NOT being pressed +// Detect if a gamepad button is NOT being pressed bool IsGamepadButtonUp(int gamepad, int button) { bool result = false;