From 52e8b8226cc204838fc8216bc098642666b16c97 Mon Sep 17 00:00:00 2001 From: sneakyevil Date: Sun, 29 Sep 2024 16:16:30 +0200 Subject: [PATCH] Small if check change. --- fast_obj.h | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/fast_obj.h b/fast_obj.h index ad53745..3331c37 100644 --- a/fast_obj.h +++ b/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);