소스 검색

Merge pull request #2262 from Azaezel/memberMess2

member var conversion error that oddly didn't crop up till mac testing.
Areloch 7 년 전
부모
커밋
2caa826cfd
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Engine/source/math/mPolyhedron.h

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