From deb760fb1b607039a0094bce1c7c1d1145b877e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Tue, 6 Dec 2022 11:22:11 +0100 Subject: Path2D: Fix build issue after conflicts between #68860 and #69115 --- scene/2d/path_2d.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } } -- cgit v1.2.3