mirror of
https://github.com/thisistherk/fast_obj.git
synced 2025-04-04 21:15:04 +00:00
Small if check change.
This commit is contained in:
parent
83f6ea026d
commit
52e8b8226c
1 changed files with 4 additions and 6 deletions
10
fast_obj.h
10
fast_obj.h
|
@ -1036,14 +1036,12 @@ const char* read_map(fastObjData* data, const char* ptr, unsigned int* idx)
|
|||
if (*idx == array_size(data->mesh->textures))
|
||||
{
|
||||
fastObjTexture new_map = map_default();
|
||||
if (path)
|
||||
{
|
||||
new_map.name = string_copy(s, e);
|
||||
new_map.name = string_copy(s, e);
|
||||
|
||||
if (path) {
|
||||
new_map.path = string_copy(path, e);
|
||||
}
|
||||
else
|
||||
{
|
||||
new_map.name = string_copy(s, e);
|
||||
else {
|
||||
new_map.path = string_concat(data->base, s, e);
|
||||
}
|
||||
string_fix_separators(new_map.path);
|
||||
|
|
Loading…
Add table
Reference in a new issue