summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2022-12-06 11:22:11 +0100
committerRémi Verschelde <rverschelde@gmail.com>2022-12-06 11:22:11 +0100
commitdeb760fb1b607039a0094bce1c7c1d1145b877e1 (patch)
tree8be5fa5197a0ca7aecc1b0030303abe1e8ec7032
parent9cc1e9cbd003d684e4ac689eb5ab6f7c7040b388 (diff)
Path2D: Fix build issue after conflicts between #68860 and #69115
-rw-r--r--scene/2d/path_2d.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/2d/path_2d.cpp b/scene/2d/path_2d.cpp
index c4cb8e7f94..3876ab128c 100644
--- a/scene/2d/path_2d.cpp
+++ b/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);
}
}