Skip to content

Commit 89dbb88

Browse files
committed
fix bad merge (fix the slash overkiller (reading from mounted stuff) for android commit)
1 parent 1382c2b commit 89dbb88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/nbl/system/ISystem.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ class ISystem : public core::IReferenceCounted
335335

336336
void mount(core::smart_refctd_ptr<IFileArchive>&& archive, const system::path& pathAlias = "")
337337
{
338-
auto path = std::filesystem::absolute(archive->asFile()->getFileName()).generic_string();
338+
auto path = archive->asFile()->getFileName();
339339
m_cachedArchiveFiles.insert(path, std::move(archive));
340340
if (!pathAlias.empty())
341341
{

0 commit comments

Comments
 (0)