mirror of
https://github.com/thisistherk/fast_obj.git
synced 2025-04-04 13:05:02 +00:00
Fix compiler warning
This commit is contained in:
parent
c9885c36d4
commit
48127431ad
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue