Merge pull request #7 from aspurdy/fix-bump-map

Fix bump map parsing
This commit is contained in:
Richard Knight 2019-07-20 08:42:46 +01:00 committed by GitHub
commit 38b9f04613
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1076,7 +1076,7 @@ int read_mtllib(fastObjData* data, void* file)
p[3] == 'p' &&
is_whitespace(p[4]))
{
p = read_map(data, p + 4, &mtl.map_d);
p = read_map(data, p + 4, &mtl.map_bump);
}
}
break;