Utility/OBJLoader: Fix compilation

This commit is contained in:
Lynix 2016-11-24 10:01:22 +01:00
parent 0c8128b7e4
commit faa03225bb
1 changed files with 1 additions and 1 deletions

View File

@ -265,7 +265,7 @@ namespace Nz
if (vertexIndices.texCoord > 0)
{
Vector2f uv = texCoords[vertexIndices.texCoord - 1];
Vector2f uv = Vector2f(texCoords[vertexIndices.texCoord - 1]);
vertex.uv.Set(parameters.texCoordOffset + uv * parameters.texCoordScale);
}
else