Matthias Moulin %!s(int64=7) %!d(string=hai) anos
pai
achega
b4425d8e36
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      code/ObjFileImporter.cpp

+ 1 - 1
code/ObjFileImporter.cpp

@@ -251,7 +251,7 @@ void ObjFileImporter::CreateDataFromImport(const ObjFile::Model* pModel, aiScene
 
 		std::unique_ptr<aiMesh> mesh( new aiMesh );
         mesh->mPrimitiveTypes = aiPrimitiveType_POINT;
-        unsigned int n = pModel->m_Vertices.size();
+        unsigned int n = (unsigned int)pModel->m_Vertices.size();
         mesh->mNumVertices = n;
 
         mesh->mVertices = new aiVector3D[n];