summaryrefslogtreecommitdiffstats
path: root/thirdparty/misc/patches/polypartition-godot-types.patch
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparty/misc/patches/polypartition-godot-types.patch')
-rw-r--r--thirdparty/misc/patches/polypartition-godot-types.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/thirdparty/misc/patches/polypartition-godot-types.patch b/thirdparty/misc/patches/polypartition-godot-types.patch
index 61737f9fd2..5d8aba3437 100644
--- a/thirdparty/misc/patches/polypartition-godot-types.patch
+++ b/thirdparty/misc/patches/polypartition-godot-types.patch
@@ -101,7 +101,7 @@ index 3a8a6efa83..8c5409bf24 100644
pointvisible = true;
- for (iter2 = polys.begin(); iter2 != polys.end(); iter2++) {
- if (iter2->IsHole()) {
-+ for (iter2 = polys.front(); iter2; iter2->next()) {
++ for (iter2 = polys.front(); iter2; iter2 = iter2->next()) {
+ if (iter2->get().IsHole()) {
continue;
}