Skip to content

Commit 7b9fd03

Browse files
committed
Merge branch 'master' of github.com:RobLoach/raylib-cpp into next
2 parents f2ec838 + 7581b1d commit 7b9fd03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/Color.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ class Color : public ::Color {
122122
::DrawLineBezier(startPos, endPos, thick, *this);
123123
}
124124

125-
void DrawLineStrip(const ::Vector2* points, int numPoints) const { ::DrawLineStrip(points, numPoints, *this); }
125+
void DrawLineStrip(::Vector2* points, int numPoints) const { ::DrawLineStrip(points, numPoints, *this); }
126126

127127
void DrawText(const char* text, int posX = 0, int posY = 0, int fontSize = 10.0f) const {
128128
::DrawText(text, posX, posY, fontSize, *this);

0 commit comments

Comments
 (0)