From 7ae83e4d07f98115fea779a701d89227f733bc85 Mon Sep 17 00:00:00 2001 From: Bob Pendleton Date: Thu, 2 Jul 2009 16:53:56 +0000 Subject: [PATCH] Another documentation fix, Thanks to Mason Wheeler for finding these. --- include/SDL_video.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/SDL_video.h b/include/SDL_video.h index f8646c819..f17f748a5 100644 --- a/include/SDL_video.h +++ b/include/SDL_video.h @@ -1142,7 +1142,7 @@ extern DECLSPEC void SDLCALL SDL_DirtyTexture(SDL_TextureID textureID, const SDL_Rect * rects); /** - * \fn void SDL_SetRenderDrawColor(Uint8 r, Uint8 g, Uint8 b, Uint8 a) + * \fn int SDL_SetRenderDrawColor(Uint8 r, Uint8 g, Uint8 b, Uint8 a) * * \brief Set the color used for drawing operations (Fill and Line). * @@ -1156,7 +1156,7 @@ extern DECLSPEC int SDL_SetRenderDrawColor(Uint8 r, Uint8 g, Uint8 b, Uint8 a); /** - * \fn void SDL_GetRenderDrawColor(Uint8 * r, Uint8 * g, Uint8 * b, Uint8 * a) + * \fn int SDL_GetRenderDrawColor(Uint8 * r, Uint8 * g, Uint8 * b, Uint8 * a) * * \brief Get the color used for drawing operations (Fill and Line). *