From ad73bf3e144aeb5773f25a7aea0b20c77569e7b8 Mon Sep 17 00:00:00 2001 From: Twanvanb1 <78142253+Twanvanb1@users.noreply.github.com> Date: Sat, 28 Dec 2024 03:42:43 +0100 Subject: [PATCH] Fix `DrawRect` syntax on both the v3 and v4 Function pages (#2) * Update RSDKv4 DrawRect to have the correct syntax * Update DrawRect.md --- docs/RSDKv3/Functions/Drawing/DrawRect.md | 4 ++-- docs/RSDKv4/Functions/Drawing/DrawRect.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/RSDKv3/Functions/Drawing/DrawRect.md b/docs/RSDKv3/Functions/Drawing/DrawRect.md index 9fcd467ef..91fd973fa 100644 --- a/docs/RSDKv3/Functions/Drawing/DrawRect.md +++ b/docs/RSDKv3/Functions/Drawing/DrawRect.md @@ -41,10 +41,10 @@ None. ## Syntax ``` -DrawTintRect(int iXPos, int iYPos, int Width, int Height, int R, int G, int B, int Alpha) +DrawRect(int iXPos, int iYPos, int Width, int Height, int R, int G, int B, int Alpha) ``` ## Example ``` DrawRect(30, 220, 60, 20, 255, 128, 128, 255) -``` \ No newline at end of file +``` diff --git a/docs/RSDKv4/Functions/Drawing/DrawRect.md b/docs/RSDKv4/Functions/Drawing/DrawRect.md index bbd7456cf..8177677c6 100644 --- a/docs/RSDKv4/Functions/Drawing/DrawRect.md +++ b/docs/RSDKv4/Functions/Drawing/DrawRect.md @@ -41,10 +41,10 @@ None. ## Syntax ``` -DrawTintRect(int ixpos, int iypos, int width, int height, int r, int g, int b, int alpha) +DrawRect(int ixpos, int iypos, int width, int height, int r, int g, int b, int alpha) ``` ## Example ``` DrawRect(30, 220, 60, 20, 255, 128, 128, 255) -``` \ No newline at end of file +```