Skip to content

Commit

Permalink
Fix build in R 4.4.1 (#172)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexreg authored Sep 10, 2024
1 parent 0bd90a8 commit 1b67664
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/agg/src/agg_font_freetype.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ namespace agg
v_control = v_start;

point = outline.points + first;
tags = outline.tags + first;
tags = reinterpret_cast<char*>(outline.tags + first);
tag = FT_CURVE_TAG(tags[0]);

// A contour cannot start with a cubic control point!
Expand Down

0 comments on commit 1b67664

Please sign in to comment.