From 2de9a96cde71fc47588bedce9eb720f9e6378335 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sat, 20 Dec 2008 12:32:38 +0000 Subject: [PATCH] Minor corrections --- 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 67c711766..57fb2f5f7 100644 --- a/include/SDL_video.h +++ b/include/SDL_video.h @@ -1171,7 +1171,7 @@ extern DECLSPEC int SDL_GetRenderDrawColor(Uint8 * r, Uint8 * g, Uint8 * b, /** * \fn int SDL_SetRenderDrawBlendMode(int blendMode) * - * \brief Set the blend mode used for drawing operations + * \brief Set the blend mode used for drawing operations (Fill and Line). * * \param blendMode SDL_BlendMode to use for blending * @@ -1197,7 +1197,7 @@ extern DECLSPEC int SDLCALL SDL_SetRenderDrawBlendMode(int blendMode); extern DECLSPEC int SDLCALL SDL_GetRenderDrawBlendMode(int *blendMode); /** - * \fn void SDL_RenderLine(int x1, int y1, int x2, int y2) + * \fn int SDL_RenderLine(int x1, int y1, int x2, int y2) * * \brief Draw a line on the current rendering target. *