Skip to content

Commit

Permalink
Path2D: Fix build issue after conflicts between godotengine#68860 and g…
Browse files Browse the repository at this point in the history
  • Loading branch information
akien-mga authored and rohanrhu committed Dec 28, 2022
1 parent c0bfc33 commit f8c9cf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scene/2d/path_2d.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ void Path2D::_notification(int p_what) {
Transform2D *w = frames.ptrw();

for (int i = 0; i < sample_count; i++) {
w[i] = curve->sample_baked_with_rotation(i * interval, true, true);
w[i] = curve->sample_baked_with_rotation(i * interval, true);
}
}

Expand Down

0 comments on commit f8c9cf6

Please sign in to comment.