diff --git a/include/SDL_hints.h b/include/SDL_hints.h index b379dbad6..c23925eeb 100644 --- a/include/SDL_hints.h +++ b/include/SDL_hints.h @@ -2426,7 +2426,9 @@ extern DECLSPEC SDL_bool SDLCALL SDL_ResetHint(const char *name); /** * Reset all hints to the default values. * - * This will reset all hints to the value of the associated environment variable, or NULL if the environment isn't set. Callbacks will be called normally with this change. + * This will reset all hints to the value of the associated environment + * variable, or NULL if the environment isn't set. Callbacks will be called + * normally with this change. * * \since This function is available since SDL 2.26.0. * @@ -2509,7 +2511,10 @@ extern DECLSPEC void SDLCALL SDL_DelHintCallback(const char *name, /** * Clear all hints. * - * This function is automatically called during SDL_Quit(), and deletes all callbacks without calling them and frees all memory associated with hints. If you're calling this from application code you probably want to call SDL_ResetHints() instead. + * This function is automatically called during SDL_Quit(), and deletes all + * callbacks without calling them and frees all memory associated with hints. + * If you're calling this from application code you probably want to call + * SDL_ResetHints() instead. * * This function will be removed from the API the next time we rev the ABI. *