Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
pablode committed Jul 13, 2024
1 parent 464ee74 commit e76f4b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/libguc/src/cgltf_util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ namespace detail
fs::path relativePath = fs::relative(path);

ArResolver& resolver = ArGetResolver();
ArResolvedPath resolvedPath = resolver.Resolve(relativePath.string());
ArResolvedPath resolvedPath = resolver.Resolve("./" + relativePath.string());
if (!resolvedPath)
{
TF_RUNTIME_ERROR("unable to resolve %s", path);
Expand Down
2 changes: 1 addition & 1 deletion src/libguc/src/image.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ namespace detail
fs::path relativePath = fs::relative(path);

ArResolver& resolver = ArGetResolver();
ArResolvedPath resolvedPath = resolver.Resolve(relativePath.string());
ArResolvedPath resolvedPath = resolver.Resolve("./" + relativePath.string());
if (!resolvedPath)
{
TF_RUNTIME_ERROR("unable to resolve %s", path);
Expand Down

0 comments on commit e76f4b5

Please sign in to comment.