Recast: fix compiler error

New function wasn't renamed correctly, fixed rename error.
This commit is contained in:
Kawe Mazidjatari 2024-07-12 22:14:05 +02:00
parent 6b86c9bc1b
commit 9fa6b6c42a

View File

@ -1695,7 +1695,7 @@ dtStatus dtNavMesh::getPolyArea(dtPolyRef ref, unsigned char* resultArea) const
return DT_SUCCESS;
}
float dtCalcPolyArea(const dtPoly* poly, const float* verts)
float dtCalcPolySurfaceArea(const dtPoly* poly, const float* verts)
{
float polyArea = 0.0f;