mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-12 19:31:41 +00:00
Fix x64 problems for WIN64.
This commit is contained in:
parent
6bfb7d8186
commit
fcf7bee64a
12 changed files with 52 additions and 22 deletions
|
|
@ -1170,7 +1170,10 @@ void TSShape::assembleShape()
|
|||
skip = true;
|
||||
TSMesh * mesh = TSMesh::assembleMesh(meshType,skip);
|
||||
if (ptr32)
|
||||
{
|
||||
ptr32[i] = skip ? 0 : (S32)mesh;
|
||||
meshes.push_back(skip ? 0 : mesh);
|
||||
}
|
||||
|
||||
// fill in location of verts, tverts, and normals for detail levels
|
||||
if (mesh && meshType!=TSMesh::DecalMeshType)
|
||||
|
|
@ -1198,7 +1201,6 @@ void TSShape::assembleShape()
|
|||
}
|
||||
}
|
||||
}
|
||||
meshes.set(ptr32,numMeshes);
|
||||
|
||||
tsalloc.checkGuard();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue