summaryrefslogtreecommitdiffstats
path: root/src/core/core.cpp
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-05-28 19:17:42 +0200
committerGitHub <noreply@github.com>2023-05-28 19:17:42 +0200
commit93c17ee4da9ba8475d4573489eab11ff46ccfe5a (patch)
tree6c70b6145340022e7ba61d7880fefa4c5169edee /src/core/core.cpp
parentMerge pull request #10464 from liamwhite/clear-cache (diff)
parentvfs_concat: fix time complexity of read (diff)
downloadyuzu-93c17ee4da9ba8475d4573489eab11ff46ccfe5a.tar
yuzu-93c17ee4da9ba8475d4573489eab11ff46ccfe5a.tar.gz
yuzu-93c17ee4da9ba8475d4573489eab11ff46ccfe5a.tar.bz2
yuzu-93c17ee4da9ba8475d4573489eab11ff46ccfe5a.tar.lz
yuzu-93c17ee4da9ba8475d4573489eab11ff46ccfe5a.tar.xz
yuzu-93c17ee4da9ba8475d4573489eab11ff46ccfe5a.tar.zst
yuzu-93c17ee4da9ba8475d4573489eab11ff46ccfe5a.zip
Diffstat (limited to '')
-rw-r--r--src/core/core.cpp3
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)) {