Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/thirdparty/misc/patches/polypartition-0002-shadow-warning.patch
9898 views
1
diff --git a/thirdparty/misc/polypartition.h b/thirdparty/misc/polypartition.h
2
index fae7909079..c084bdf74c 100644
3
--- a/thirdparty/misc/polypartition.h
4
+++ b/thirdparty/misc/polypartition.h
5
@@ -71,8 +71,8 @@ class TPPLPoly {
6
return hole;
7
}
8
9
- void SetHole(bool hole) {
10
- this->hole = hole;
11
+ void SetHole(bool p_hole) {
12
+ this->hole = p_hole;
13
}
14
15
TPPLPoint &GetPoint(long i) {
16
17