Fix Vertex Alloc usage at Index Alloc

This commit is contained in:
2026-03-24 22:20:41 +01:00
parent 4777c85f9a
commit eea0e9844f
4 changed files with 4 additions and 5 deletions
+2 -2
View File
@@ -28,9 +28,9 @@ PD_API bool ExpandVertices(size_t count, PD::ptr accessor) {
return true;
}
PD_API bool EcpandIndices(size_t count, PD::ptr accessor) {
PD_API bool ExpandIndices(size_t count, PD::ptr accessor) {
if (pIndexAccessor != accessor) return false;
pVtxPool.Allocate(count);
pIdxPool.Allocate(count);
return true;
}