summaryrefslogtreecommitdiffhomepage
path: root/src/raylib.h
diff options
context:
space:
mode:
authorRay <[email protected]>2020-11-03 23:47:33 +0100
committerRay <[email protected]>2020-11-03 23:47:33 +0100
commit3e1cd487dfe1e1381e1effb71fc069cb4dd8ad20 (patch)
treeb1f88ab590e601a0932da43e4c780402b46db5a7 /src/raylib.h
parentf46514b855f5790b9ccef440ce8df2c84ce92415 (diff)
downloadraylib-3e1cd487dfe1e1381e1effb71fc069cb4dd8ad20.tar.gz
raylib-3e1cd487dfe1e1381e1effb71fc069cb4dd8ad20.zip
Remove trailing spaces
Diffstat (limited to 'src/raylib.h')
-rw-r--r--src/raylib.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/raylib.h b/src/raylib.h
index 1fb5bb4e..7bed20c8 100644
--- a/src/raylib.h
+++ b/src/raylib.h
@@ -1184,7 +1184,7 @@ RLAPI void ImageDrawCircle(Image *dst, int centerX, int centerY, int radius, Col
RLAPI void ImageDrawCircleV(Image *dst, Vector2 center, int radius, Color color); // Draw circle within an image (Vector version)
RLAPI void ImageDrawRectangle(Image *dst, int posX, int posY, int width, int height, Color color); // Draw rectangle within an image
RLAPI void ImageDrawRectangleV(Image *dst, Vector2 position, Vector2 size, Color color); // Draw rectangle within an image (Vector version)
-RLAPI void ImageDrawRectangleRec(Image *dst, Rectangle rec, Color color); // Draw rectangle within an image
+RLAPI void ImageDrawRectangleRec(Image *dst, Rectangle rec, Color color); // Draw rectangle within an image
RLAPI void ImageDrawRectangleLines(Image *dst, Rectangle rec, int thick, Color color); // Draw rectangle lines within an image
RLAPI void ImageDraw(Image *dst, Image src, Rectangle srcRec, Rectangle dstRec, Color tint); // Draw a source image within a destination image (tint applied to source)
RLAPI void ImageDrawText(Image *dst, const char *text, int posX, int posY, int fontSize, Color color); // Draw text (using default font) within an image (destination)