Added missing input.close()

This commit is contained in:
4VRDriver
2020-09-14 22:20:10 +02:00
parent b957e4a5ee
commit 88bfbc46be
5 changed files with 13 additions and 9 deletions

View File

@@ -101,4 +101,7 @@ void Model::loadModel(std::string pathToModel) {
Mesh currentMesh(meshVertices, meshIndices, meshTextures);
meshes.push_back(currentMesh);
}
input.close();
}