diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-05-28 13:17:42 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-28 13:17:42 -0400 |
commit | 93c17ee4da9ba8475d4573489eab11ff46ccfe5a (patch) | |
tree | 6c70b6145340022e7ba61d7880fefa4c5169edee /src/core/core.cpp | |
parent | 18595738fd79ccf8572ed160c6c0d7681167364e (diff) | |
parent | 0596a4afb1b3b835f3cf9912551e4fbf74c2b70b (diff) |
Merge pull request #10463 from liamwhite/this-is-why-we-need-g
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)) { |