Utility/OBJParser: Fix a missing word.. hue
Former-commit-id: 06544480f0f2c8089b68fa264a8ffb63d5befce1 [formerly 4ac71561b164551c4fa5d7d04765550983283efa] [formerly 6d237f50af7fa43cd3f610d2f0f76abbbd3936fc [formerly 2d6841776d075febe4e386260c8e907fe012a191]] Former-commit-id: 44d1076a425fd5684791f42b3154614627fb203a [formerly f5047bca3872d4d4ae51a0366ae85abb2ea88764] Former-commit-id: f1aae2ba16c89ff45e54db33eeae8fd6597cae17
This commit is contained in:
parent
4fff7abf61
commit
fa86f4345e
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue