Skip to content

Commit 7581b1d

Browse files
committed
Revert "Add missing const"
This reverts commit 9a579b1.
1 parent 8ab70ae commit 7581b1d

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)