Skip to content

Commit

Permalink
Merge branch 'master' of github.com:RobLoach/raylib-cpp into next
Browse files Browse the repository at this point in the history
  • Loading branch information
RobLoach committed Oct 16, 2024
2 parents f2ec838 + 7581b1d commit 7b9fd03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/Color.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ class Color : public ::Color {
::DrawLineBezier(startPos, endPos, thick, *this);
}

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

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

0 comments on commit 7b9fd03

Please sign in to comment.