summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRay <[email protected]>2021-05-25 11:59:34 +0200
committerRay <[email protected]>2021-05-25 11:59:34 +0200
commit9f45fea31eb53380baf14566c39eb791f157b7e2 (patch)
treeea53ba06e597fd3b6345905a1c3b7327fd6ec6ab
parente5e401c640564381f8353ab9e2338e6f2cb3a498 (diff)
downloadraylib-9f45fea31eb53380baf14566c39eb791f157b7e2.tar.gz
raylib-9f45fea31eb53380baf14566c39eb791f157b7e2.zip
Remove line break in DrawTextRecEx()
-rw-r--r--src/raylib.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/raylib.h b/src/raylib.h
index b468961b..0394315f 100644
--- a/src/raylib.h
+++ b/src/raylib.h
@@ -1330,8 +1330,7 @@ RLAPI void DrawFPS(int posX, int posY);
RLAPI void DrawText(const char *text, int posX, int posY, int fontSize, Color color); // Draw text (using default font)
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 selectTint, Color selectBackTint); // Draw text using font inside rectangle limits with support for text selection
+RLAPI void DrawTextRecEx(Font font, const char *text, Rectangle rec, float fontSize, float spacing, bool wordWrap, Color tint, int selectStart, int selectLength, Color selectTint, Color selectBackTint); // Draw text using font inside rectangle limits with support for text selection
RLAPI void DrawTextCodepoint(Font font, int codepoint, Vector2 position, float fontSize, Color tint); // Draw one character (codepoint)
// Text misc. functions