diff --git a/src/raylib.h b/src/raylib.h index c345e5976..abc8371bc 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -1118,7 +1118,6 @@ RLAPI bool IsKeyPressed(int key); // Check if a key RLAPI bool IsKeyDown(int key); // Check if a key is being pressed RLAPI bool IsKeyReleased(int key); // Check if a key has been released once RLAPI bool IsKeyUp(int key); // Check if a key is NOT being pressed -RLAPI bool IsKeyRepeated(int key); // Check if a key has been repeated RLAPI void SetExitKey(int key); // Set a custom key to exit program (default is ESC) RLAPI int GetKeyPressed(void); // Get key pressed (keycode), call it multiple times for keys queued, returns 0 when the queue is empty RLAPI int GetCharPressed(void); // Get char pressed (unicode), call it multiple times for chars queued, returns 0 when the queue is empty