fix warning on windows about 64 to 32 bit cast

This commit is contained in:
Andrew Meadows 2016-05-24 15:01:26 -07:00
parent e8e059c637
commit 2efec2a878

View file

@ -330,7 +330,7 @@ bool vhacd::VHACDUtil::computeVHACD(FBXGeometry& geometry,
foreach (glm::vec3 vertex, mesh.vertices) {
vertices.push_back(glm::vec3(mesh.modelTransform * glm::vec4(vertex, 1.0f)));
}
uint32_t numVertices = vertices.size();
uint32_t numVertices = (uint32_t)vertices.size();
if (_verbose) {
qDebug() << "mesh" << meshIndex << ": "