Merge pull request #2262 from Azaezel/memberMess2

member var conversion error that oddly didn't crop up till mac testing.
This commit is contained in:
Areloch 2018-07-09 13:16:04 -05:00 committed by GitHub
commit 2caa826cfd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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(); }