Fix compiler warning

This commit is contained in:
Richard Knight 2020-05-23 16:27:22 +01:00
parent c9885c36d4
commit 48127431ad

View file

@ -686,12 +686,12 @@ const char* parse_face(fastObjData* data, const char* ptr)
if (v < 0)
vn.p = (array_size(data->mesh->positions) / 3) - (fastObjUInt)(-v);
else
vn.p = (size_t)(v);
vn.p = (fastObjUInt)(v);
if (t < 0)
vn.t = (array_size(data->mesh->texcoords) / 2) - (fastObjUInt)(-t);
else if (t > 0)
vn.t = (size_t)(t);
vn.t = (fastObjUInt)(t);
else
vn.t = 0;