Fixed build warnings on MSVC14 x64 in the COB format sources.

pull/1083/head
Jared Mulconry 2016-11-19 02:35:30 +11:00
parent df6707a262
commit 2866da1262
1 changed files with 1 additions and 1 deletions

View File

@ -181,7 +181,7 @@ void COBImporter::InternReadFile( const std::string& pFile,
if (n->type == Node::TYPE_MESH) {
Mesh& mesh = (Mesh&)(*n.get());
if (mesh.vertex_positions.size() && mesh.texture_coords.size()) {
pScene->mNumMeshes += mesh.temp_map.size();
pScene->mNumMeshes += static_cast<unsigned int>(mesh.temp_map.size());
}
}
}