From 7c888edba18c78e38829a752626b67c41e0c224a Mon Sep 17 00:00:00 2001 From: Ray Date: Thu, 9 Mar 2017 16:25:15 +0100 Subject: [PATCH] Corrected typo introduced in last commit --- src/core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core.c b/src/core.c index 2b16d49e7..773bc15d0 100644 --- a/src/core.c +++ b/src/core.c @@ -291,7 +291,7 @@ static void InitTimer(void); // Initialize timer static double GetTime(void); // Returns time since InitTimer() was run static void Wait(float ms); // Wait for some milliseconds (stop program execution) static bool GetKeyStatus(int key); // Returns if a key has been pressed -static bool ButtonStatus(int button); // Returns if a mouse button has been pressed +static bool GetMouseButtonStatus(int button); // Returns if a mouse button has been pressed static void PollInputEvents(void); // Register user events static void SwapBuffers(void); // Copy back buffer to front buffers static void LogoAnimation(void); // Plays raylib logo appearing animation