diff options
author | Liam <[email protected]> | 2023-05-26 15:41:17 -0400 |
---|---|---|
committer | Liam <[email protected]> | 2023-05-26 16:07:38 -0400 |
commit | 0596a4afb1b3b835f3cf9912551e4fbf74c2b70b (patch) | |
tree | 8cf845f41921e64925a01a72a39970b378b9f973 /src/core/core.cpp | |
parent | 83b502c08cf520166d09b8841f7b8874d35dce4f (diff) | |
download | yuzu-mainline-0596a4afb1b3b835f3cf9912551e4fbf74c2b70b.tar.gz yuzu-mainline-0596a4afb1b3b835f3cf9912551e4fbf74c2b70b.zip |
vfs_concat: fix time complexity of read
Diffstat (limited to 'src/core/core.cpp')
-rw-r--r-- | src/core/core.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp index b5f62690e..4406ae30e 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp @@ -117,8 +117,7 @@ FileSys::VirtualFile GetGameFileFromPath(const FileSys::VirtualFilesystem& vfs, return nullptr; } - return FileSys::ConcatenatedVfsFile::MakeConcatenatedFile(std::move(concat), - dir->GetName()); + return FileSys::ConcatenatedVfsFile::MakeConcatenatedFile(concat, dir->GetName()); } if (Common::FS::IsDir(path)) { |