Commit b1ce3799e9f39b3d52ef6634827972987667b9cf

Philipp Wiesemann 2016-05-05T22:03:52

Added missing links at documentation of SDL_FreeCursor() in header file.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
diff --git a/include/SDL_mouse.h b/include/SDL_mouse.h
index ea9622f..8053bf5 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);