mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-15 00:24:40 +00:00
Fixed Return value from false to 0 (which is U32)
This commit is contained in:
parent
3902ebb861
commit
2ec5af703c
1 changed files with 1 additions and 1 deletions
|
|
@ -458,7 +458,7 @@ U32 PlaneSet< T >::clipPolygon( const Point3F* inVertices, U32 inNumVertices, Po
|
||||||
// to indicate we haven't clipped anything.
|
// to indicate we haven't clipped anything.
|
||||||
|
|
||||||
if( !numClippedPolygonVertices )
|
if( !numClippedPolygonVertices )
|
||||||
return false;
|
return 0;
|
||||||
|
|
||||||
// On first iteration, replace the inVertices with the
|
// On first iteration, replace the inVertices with the
|
||||||
// outVertices buffer.
|
// outVertices buffer.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue