From a28a42cfc682a02109987d1a73f9d483cd96a33a Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sun, 21 Jan 2024 11:36:38 -0800 Subject: [PATCH] Fixed declaration of SDL_HapticRumbleSupported --- include/SDL3/SDL_haptic.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/include/SDL3/SDL_haptic.h b/include/SDL3/SDL_haptic.h index 926faf764f..7fc161fbe2 100644 --- a/include/SDL3/SDL_haptic.h +++ b/include/SDL3/SDL_haptic.h @@ -1294,9 +1294,7 @@ extern DECLSPEC int SDLCALL SDL_StopHapticEffects(SDL_Haptic *haptic); * Check whether rumble is supported on a haptic device. * * \param haptic haptic device to check for rumble support - * \returns SDL_TRUE if effect is supported, SDL_FALSE if it isn't, or a - * negative error code on failure; call SDL_GetError() for more - * information. + * \returns SDL_TRUE if the effect is supported or SDL_FALSE if it isn't. * * \since This function is available since SDL 3.0.0. * @@ -1304,7 +1302,7 @@ extern DECLSPEC int SDLCALL SDL_StopHapticEffects(SDL_Haptic *haptic); * \sa SDL_PlayHapticRumble * \sa SDL_StopHapticRumble */ -extern DECLSPEC int SDLCALL SDL_HapticRumbleSupported(SDL_Haptic *haptic); +extern DECLSPEC SDL_bool SDLCALL SDL_HapticRumbleSupported(SDL_Haptic *haptic); /** * Initialize a haptic device for simple rumble playback.