Browse Source

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

Rémi Verschelde 2 years ago
parent
commit
deb760fb1b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      scene/2d/path_2d.cpp

+ 1 - 1
scene/2d/path_2d.cpp

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