summaryrefslogtreecommitdiffhomepage
path: root/src/shapes.c
diff options
context:
space:
mode:
authorRay <[email protected]>2018-11-06 16:11:11 +0100
committerRay <[email protected]>2018-11-06 16:11:11 +0100
commit065994219e32e661bd92c2933b70c9573b82fff0 (patch)
treecb183dee22ac4f25d6723c44edfc18669d090e6e /src/shapes.c
parentff64e860a1565fa3ad570b979f5f20c320e94b04 (diff)
downloadraylib-065994219e32e661bd92c2933b70c9573b82fff0.tar.gz
raylib-065994219e32e661bd92c2933b70c9573b82fff0.zip
Review parameter issue with MSVC
Diffstat (limited to 'src/shapes.c')
-rw-r--r--src/shapes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shapes.c b/src/shapes.c
index 69331445..77c141d1 100644
--- a/src/shapes.c
+++ b/src/shapes.c
@@ -276,7 +276,7 @@ void DrawRectangleRec(Rectangle rec, Color color)
}
// Draw a color-filled rectangle with pro parameters
-void DrawRectanglePro(Rectangle rec, Vector2 origin, float rotation, Color colors[static 4])
+void DrawRectanglePro(Rectangle rec, Vector2 origin, float rotation, Color colors[4])
{
rlEnableTexture(GetShapesTexture().id);