summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/sdmc_factory.h
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2021-06-28 06:27:28 +0200
committerMorph <39850852+Morph1984@users.noreply.github.com>2021-06-28 16:08:08 +0200
commit6ac978426c68270ff022e719f7544251d42b19cf (patch)
treeb5eaac9d31559efa4263910c4ccd4c2ec3671c93 /src/core/file_sys/sdmc_factory.h
parentcore: Simplify SDMC mod loading (diff)
downloadyuzu-6ac978426c68270ff022e719f7544251d42b19cf.tar
yuzu-6ac978426c68270ff022e719f7544251d42b19cf.tar.gz
yuzu-6ac978426c68270ff022e719f7544251d42b19cf.tar.bz2
yuzu-6ac978426c68270ff022e719f7544251d42b19cf.tar.lz
yuzu-6ac978426c68270ff022e719f7544251d42b19cf.tar.xz
yuzu-6ac978426c68270ff022e719f7544251d42b19cf.tar.zst
yuzu-6ac978426c68270ff022e719f7544251d42b19cf.zip
Diffstat (limited to '')
-rw-r--r--src/core/file_sys/sdmc_factory.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/file_sys/sdmc_factory.h b/src/core/file_sys/sdmc_factory.h
index c57514938..3a3d11f3a 100644
--- a/src/core/file_sys/sdmc_factory.h
+++ b/src/core/file_sys/sdmc_factory.h
@@ -16,7 +16,7 @@ class PlaceholderCache;
/// File system interface to the SDCard archive
class SDMCFactory {
public:
- explicit SDMCFactory(VirtualDir dir);
+ explicit SDMCFactory(VirtualDir sd_dir_, VirtualDir sd_mod_dir_);
~SDMCFactory();
ResultVal<VirtualDir> Open() const;
@@ -33,7 +33,8 @@ public:
u64 GetSDMCTotalSpace() const;
private:
- VirtualDir dir;
+ VirtualDir sd_dir;
+ VirtualDir sd_mod_dir;
std::unique_ptr<RegisteredCache> contents;
std::unique_ptr<PlaceholderCache> placeholder;