summaryrefslogtreecommitdiffstats
path: root/src/core/core.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-09-17 00:14:43 +0200
committerLioncash <mathew1800@gmail.com>2020-09-17 00:16:04 +0200
commit0e80567bef380843f5fc9bc00b70f14c4bd577b1 (patch)
tree552dc5595866d8ab498dd879a3664f4bad60ac31 /src/core/core.cpp
parentloader/nso: Remove unnecessary [[maybe_unused]] (diff)
downloadyuzu-0e80567bef380843f5fc9bc00b70f14c4bd577b1.tar
yuzu-0e80567bef380843f5fc9bc00b70f14c4bd577b1.tar.gz
yuzu-0e80567bef380843f5fc9bc00b70f14c4bd577b1.tar.bz2
yuzu-0e80567bef380843f5fc9bc00b70f14c4bd577b1.tar.lz
yuzu-0e80567bef380843f5fc9bc00b70f14c4bd577b1.tar.xz
yuzu-0e80567bef380843f5fc9bc00b70f14c4bd577b1.tar.zst
yuzu-0e80567bef380843f5fc9bc00b70f14c4bd577b1.zip
Diffstat (limited to '')
-rw-r--r--src/core/core.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp
index 05b1d2b92..44aaba242 100644
--- a/src/core/core.cpp
+++ b/src/core/core.cpp
@@ -629,11 +629,11 @@ Loader::AppLoader& System::GetAppLoader() const {
return *impl->app_loader;
}
-void System::SetFilesystem(std::shared_ptr<FileSys::VfsFilesystem> vfs) {
+void System::SetFilesystem(FileSys::VirtualFilesystem vfs) {
impl->virtual_filesystem = std::move(vfs);
}
-std::shared_ptr<FileSys::VfsFilesystem> System::GetFilesystem() const {
+FileSys::VirtualFilesystem System::GetFilesystem() const {
return impl->virtual_filesystem;
}