From 8fc890fc7d5a0a5b85b961f22d235800fb2b8895 Mon Sep 17 00:00:00 2001 From: asdqwe Date: Mon, 21 Oct 2024 14:43:27 -0300 Subject: [PATCH] Fix missin semicolon --- src/raylib.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/raylib.h b/src/raylib.h index 31a170ee5..d157e8925 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -1184,7 +1184,7 @@ RLAPI int GetGamepadButtonPressed(void); RLAPI int GetGamepadAxisCount(int gamepad); // Get gamepad axis count for a gamepad RLAPI float GetGamepadAxisMovement(int gamepad, int axis); // Get axis movement value for a gamepad axis RLAPI int SetGamepadMappings(const char *mappings); // Set internal gamepad mappings (SDL_GameControllerDB) -RLAPI void SetGamepadVibration(int gamepad, float leftMotor, float rightMotor, int duration) // Set gamepad vibration for both motors (duration in ms) +RLAPI void SetGamepadVibration(int gamepad, float leftMotor, float rightMotor, int duration); // Set gamepad vibration for both motors (duration in ms) // Input-related functions: mouse RLAPI bool IsMouseButtonPressed(int button); // Check if a mouse button has been pressed once