3
0
Fork 0
mirror of https://github.com/lubosz/overte.git synced 2025-04-27 21:55:28 +02:00

fixed errors with Jenkins build

This commit is contained in:
utkarshgautamnyu 2017-10-26 10:48:50 -07:00
parent 2fa7c0a07d
commit 735e641548

View file

@ -332,8 +332,8 @@ void OBJBaker::createFBXNodeTree(FBXNode& rootNode, FBXGeometry& geometry) {
}
// Connect textures to materials
int mapSize = _mapTextureMaterial.size();
for (int i = 0;i < mapSize;i++) {
auto mapSize = _mapTextureMaterial.size();
for (size_t i = 0;i < mapSize;i++) {
FBXNode cNode2;
cNode2.name = C_NODE_NAME;
propertyString = CONNECTIONS_NODE_PROPERTY_1;