Path2D: Fix build issue after conflicts between #68860 and #69115

This commit is contained in:
Rémi Verschelde 2022-12-06 11:22:11 +01:00
parent 9cc1e9cbd0
commit deb760fb1b
No known key found for this signature in database
GPG Key ID: C3336907360768E1

View File

@ -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);
}
}