Fixed warning-as-error for Microsoft compiler

This commit is contained in:
Barry Fowler 2022-08-25 19:29:05 -07:00
parent c025f7178d
commit 5accb0c2c0

View File

@ -166,7 +166,7 @@ public:
// Public methods to retrieved cached Surfaces and their pre-computed
// patch points:
//
bool FaceHasLimitSurface(int face) { return _entries[face].hasLimit > 0; }
bool FaceHasLimitSurface(int face) { return _entries[face].hasLimit; }
Surface const * GetSurface(int face) { return _entries[face].surface.get();}