summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/romfs_factory.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-12-02 02:32:38 +0100
committerLioncash <mathew1800@gmail.com>2018-12-02 05:43:23 +0100
commitdb4523f1ece642475d58f8764863c8930a0812e3 (patch)
tree53a96ed05770f77a1dd9bb463863c38e3dffa36c /src/core/file_sys/romfs_factory.cpp
parentFix debug build (diff)
downloadyuzu-db4523f1ece642475d58f8764863c8930a0812e3.tar
yuzu-db4523f1ece642475d58f8764863c8930a0812e3.tar.gz
yuzu-db4523f1ece642475d58f8764863c8930a0812e3.tar.bz2
yuzu-db4523f1ece642475d58f8764863c8930a0812e3.tar.lz
yuzu-db4523f1ece642475d58f8764863c8930a0812e3.tar.xz
yuzu-db4523f1ece642475d58f8764863c8930a0812e3.tar.zst
yuzu-db4523f1ece642475d58f8764863c8930a0812e3.zip
Diffstat (limited to 'src/core/file_sys/romfs_factory.cpp')
-rw-r--r--src/core/file_sys/romfs_factory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/file_sys/romfs_factory.cpp b/src/core/file_sys/romfs_factory.cpp
index 0b645b106..6ad1e4f86 100644
--- a/src/core/file_sys/romfs_factory.cpp
+++ b/src/core/file_sys/romfs_factory.cpp
@@ -48,7 +48,7 @@ ResultVal<VirtualFile> RomFSFactory::Open(u64 title_id, StorageId storage, Conte
switch (storage) {
case StorageId::None:
- res = Service::FileSystem::GetUnionContents()->GetEntry(title_id, type);
+ res = Service::FileSystem::GetUnionContents().GetEntry(title_id, type);
break;
case StorageId::NandSystem:
res = Service::FileSystem::GetSystemNANDContents()->GetEntry(title_id, type);