summaryrefslogtreecommitdiffhomepage
path: root/src/core.c
diff options
context:
space:
mode:
authorRabia Alhaffar <[email protected]>2021-03-20 02:18:44 +0200
committerGitHub <[email protected]>2021-03-20 01:18:44 +0100
commit96e5e0dfb2369ddc6ce7a2dc6af9d578615c1bf9 (patch)
treeeac27416257de92e5c5f6dcee9c6a2fff1f806e5 /src/core.c
parent75882f32548e564c06a3d14339fabf723601f628 (diff)
downloadraylib-96e5e0dfb2369ddc6ce7a2dc6af9d578615c1bf9.tar.gz
raylib-96e5e0dfb2369ddc6ce7a2dc6af9d578615c1bf9.zip
Fixed funny typo mistake... (#1657)
Diffstat (limited to 'src/core.c')
-rw-r--r--src/core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core.c b/src/core.c
index bd099967..166ec3bc 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;