Recast: fix typo in function name

This commit is contained in:
Kawe Mazidjatari 2024-08-31 11:57:09 +02:00
parent 09a052ff18
commit 7fb9a2d48b
2 changed files with 3 additions and 3 deletions

View File

@ -719,7 +719,7 @@ public:
/// Sets the polygon group count.
/// @param[in] count The polygon group count.
void setPolyGroupcount(const int count) { m_params.polyGroupCount = count; }
void setPolyGroupCount(const int count) { m_params.polyGroupCount = count; }
/// Gets the size of the buffer required by #storeTileState to store the specified tile's state.
/// @param[in] tile The tile.

View File

@ -369,7 +369,7 @@ bool dtCreateDisjointPolyGroups(const dtTraverseTableCreateParams* params)
}
}
nav->setPolyGroupcount(set.getSetCount());
nav->setPolyGroupCount(set.getSetCount());
return true;
}
@ -470,7 +470,7 @@ bool dtUpdateDisjointPolyGroups(const dtTraverseTableCreateParams* params)
unionTraverseLinkedPolyGroups(params, i);
}
nav->setPolyGroupcount(set.getSetCount());
nav->setPolyGroupCount(set.getSetCount());
return true;
}