Utility/OBJParser: Fix a missing word.. hue

Former-commit-id: 0ebca872e1043c5805d0b8ac89d9620a817d1a75 [formerly 48814eea375b7e12c0b76bef8c7b3d7c2e432e20] [formerly 628d94e43d5b7127a7b3a4141b54286ba3ed2824 [formerly 9f540cf0218292b5669c1511907f56448fca6faa]]
Former-commit-id: 50f50cc4549d2d2810ab87e8e40d21994b9154b8 [formerly c729ce574727d200b23440cfdf491892028e0546]
Former-commit-id: 5374d05311df71fb13b3e3acc509285489303f78
This commit is contained in:
Lynix 2016-08-13 01:23:30 +02:00
parent 5fa172e7f5
commit e0e0ed7379
1 changed files with 4 additions and 4 deletions

View File

@ -300,7 +300,7 @@ namespace Nz
m_positions.push_back(vertex);
#if NAZARA_UTILITY_STRICT_RESOURCE_PARSING
else if (!UnrecognizedLine())
false;
return false;
#endif
}
else if (word == "vn")
@ -311,7 +311,7 @@ namespace Nz
m_normals.push_back(normal);
#if NAZARA_UTILITY_STRICT_RESOURCE_PARSING
else if (!UnrecognizedLine())
false;
return false;
#endif
}
else if (word == "vt")
@ -322,12 +322,12 @@ namespace Nz
m_texCoords.push_back(uvw);
#if NAZARA_UTILITY_STRICT_RESOURCE_PARSING
else if (!UnrecognizedLine())
false;
return false;
#endif
}
#if NAZARA_UTILITY_STRICT_RESOURCE_PARSING
else if (!UnrecognizedLine())
false;
return false;
#endif
break;