From b1ce3799e9f39b3d52ef6634827972987667b9cf Mon Sep 17 00:00:00 2001 From: Philipp Wiesemann Date: Thu, 5 May 2016 22:03:52 +0200 Subject: [PATCH] Added missing links at documentation of SDL_FreeCursor() in header file. --- include/SDL_mouse.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/SDL_mouse.h b/include/SDL_mouse.h index ea9622f0f7627..8053bf5a4fbd5 100644 --- a/include/SDL_mouse.h +++ b/include/SDL_mouse.h @@ -254,9 +254,11 @@ extern DECLSPEC SDL_Cursor *SDLCALL SDL_GetCursor(void); extern DECLSPEC SDL_Cursor *SDLCALL SDL_GetDefaultCursor(void); /** - * \brief Frees a cursor created with SDL_CreateCursor(). + * \brief Frees a cursor created with SDL_CreateCursor() or similar functions. * * \sa SDL_CreateCursor() + * \sa SDL_CreateColorCursor() + * \sa SDL_CreateSystemCursor() */ extern DECLSPEC void SDLCALL SDL_FreeCursor(SDL_Cursor * cursor);