summaryrefslogtreecommitdiffhomepage
path: root/src/raylib.h
diff options
context:
space:
mode:
authorRay <[email protected]>2019-02-04 09:57:02 +0100
committerRay <[email protected]>2019-02-04 09:57:02 +0100
commit5755c5e310e6d77cd280a91d5a99a4f10a4c8ab3 (patch)
tree9eee6d274e28692cb3d87cde7476fefcdb8e2017 /src/raylib.h
parent01ace743d0aaaf9c96cc0f24bec1a2f7f8a1c38b (diff)
downloadraylib-5755c5e310e6d77cd280a91d5a99a4f10a4c8ab3.tar.gz
raylib-5755c5e310e6d77cd280a91d5a99a4f10a4c8ab3.zip
Review DrawTextRecEx() formatting
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 e2b5b788..55ecbcd5 100644
--- a/src/raylib.h
+++ b/src/raylib.h
@@ -1135,7 +1135,7 @@ RLAPI void DrawText(const char *text, int posX, int posY, int fontSize, Color co
RLAPI void DrawTextEx(Font font, const char *text, Vector2 position, float fontSize, float spacing, Color tint); // Draw text using font and additional parameters
RLAPI void DrawTextRec(Font font, const char *text, Rectangle rec, float fontSize, float spacing, bool wordWrap, Color tint); // Draw text using font inside rectangle limits
RLAPI void DrawTextRecEx(Font font, const char *text, Rectangle rec, float fontSize, float spacing, bool wordWrap, Color tint,
- int selectStart, int selectLength, Color selectText, Color selectBG); // Draw text using font inside rectangle limits with support for text selection
+ int selectStart, int selectLength, Color selectText, Color selectBack); // Draw text using font inside rectangle limits with support for text selection
// Text misc. functions
RLAPI int MeasureText(const char *text, int fontSize); // Measure string width for default font