From b0b2b1314a129d3ad6750277f4172e5505ab69bb Mon Sep 17 00:00:00 2001 From: Azaezel Date: Wed, 4 Jul 2018 18:26:14 -0500 Subject: [PATCH] member var conversion error that oddly didn't crop up till mac testing. --- Engine/source/math/mPolyhedron.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Engine/source/math/mPolyhedron.h b/Engine/source/math/mPolyhedron.h index 8888d531d..3da780e0c 100644 --- a/Engine/source/math/mPolyhedron.h +++ b/Engine/source/math/mPolyhedron.h @@ -267,7 +267,7 @@ struct PolyhedronFixedVectorData : public PolyhedronData Point3F* getPoints() const { return mPointList.address(); } /// Return the number of edges that this polyhedron has. - U32 getNumEdges() const { return edgeList.size(); } + U32 getNumEdges() const { return mEdgeList.size(); } /// Edge* getEdges() const { return mEdgeList.address(); }