summaryrefslogtreecommitdiff
path: root/drivers/convex_decomp/b2Polygon.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/convex_decomp/b2Polygon.cpp')
-rw-r--r--drivers/convex_decomp/b2Polygon.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/convex_decomp/b2Polygon.cpp b/drivers/convex_decomp/b2Polygon.cpp
index 775f2adfe2..73955d3573 100644
--- a/drivers/convex_decomp/b2Polygon.cpp
+++ b/drivers/convex_decomp/b2Polygon.cpp
@@ -217,8 +217,8 @@ b2Polygon::b2Polygon(b2Triangle& t) {
void b2Polygon::Set(const b2Polygon& p) {
if (nVertices != p.nVertices){
nVertices = p.nVertices;
- if (x) delete[] x;
- if (y) delete[] y;
+ delete[] x;
+ delete[] y;
x = new float32[nVertices];
y = new float32[nVertices];
}