summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/sdmc_factory.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/file_sys/sdmc_factory.h')
-rw-r--r--src/core/file_sys/sdmc_factory.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/file_sys/sdmc_factory.h b/src/core/file_sys/sdmc_factory.h
index ea12149de..42794ba5b 100644
--- a/src/core/file_sys/sdmc_factory.h
+++ b/src/core/file_sys/sdmc_factory.h
@@ -19,12 +19,12 @@ public:
~SDMCFactory();
ResultVal<VirtualDir> Open();
- std::shared_ptr<RegisteredCache> GetSDMCContents() const;
+ RegisteredCache* GetSDMCContents() const;
private:
VirtualDir dir;
- std::shared_ptr<RegisteredCache> contents;
+ std::unique_ptr<RegisteredCache> contents;
};
} // namespace FileSys