diff options
author | Nova <> | 2022-02-20 21:13:31 -0500 |
---|---|---|
committer | Nova <> | 2022-02-21 14:10:15 -0500 |
commit | 36ae916c09181c252e679d6d3bae38ac7a446204 (patch) | |
tree | 708ca0484b28c2cf91768a5a6bab08ee9bbae0d6 /thirdparty/misc/polypartition.cpp | |
parent | b0ba9468ee40dad636dc9c5cd7b53c24041390d8 (diff) | |
download | redot-engine-36ae916c09181c252e679d6d3bae38ac7a446204.tar.gz |
Fixed issue with Godot modifications to polypartition.cpp third-party file
Diffstat (limited to 'thirdparty/misc/polypartition.cpp')
-rw-r--r-- | thirdparty/misc/polypartition.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/thirdparty/misc/polypartition.cpp b/thirdparty/misc/polypartition.cpp index 8c5409bf24..df144c57a6 100644 --- a/thirdparty/misc/polypartition.cpp +++ b/thirdparty/misc/polypartition.cpp @@ -262,7 +262,7 @@ int TPPLPartition::RemoveHoles(TPPLPolyList *inpolys, TPPLPolyList *outpolys) { } } pointvisible = true; - for (iter2 = polys.front(); iter2; iter2->next()) { + for (iter2 = polys.front(); iter2; iter2 = iter2->next()) { if (iter2->get().IsHole()) { continue; } |