mirror of
https://github.com/thisistherk/fast_obj.git
synced 2025-04-04 13:05:02 +00:00
Allow both direction of slash as a path separator for initial path on Windows
This commit is contained in:
parent
2c9e41aed3
commit
0f90b6fa0f
1 changed files with 5 additions and 0 deletions
|
@ -1338,6 +1338,11 @@ fastObjMesh* fast_obj_read(const char* path)
|
|||
/* Find base path for materials/textures */
|
||||
if (string_find_last(path, FAST_OBJ_SEPARATOR, &sep))
|
||||
data.base = string_substr(path, 0, sep + 1);
|
||||
#ifdef _WIN32
|
||||
/* Check for the other direction slash on windows too, but not linux/mac where it's a valid char */
|
||||
else if (string_find_last(path, FAST_OBJ_OTHER_SEP, &sep))
|
||||
data.base = string_substr(path, 0, sep + 1);
|
||||
#endif
|
||||
|
||||
|
||||
/* Create buffer for reading file */
|
||||
|
|
Loading…
Add table
Reference in a new issue