sdmc_factory: Add accessor for content directory
This commit is contained in:
parent
49c44e3fae
commit
02b36b0eb5
2 changed files with 7 additions and 0 deletions
|
@ -22,6 +22,10 @@ ResultVal<VirtualDir> SDMCFactory::Open() {
|
||||||
return MakeResult<VirtualDir>(dir);
|
return MakeResult<VirtualDir>(dir);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
VirtualDir SDMCFactory::GetSDMCContentDirectory() const {
|
||||||
|
return GetOrCreateDirectoryRelative(dir, "/Nintendo/Contents");
|
||||||
|
}
|
||||||
|
|
||||||
RegisteredCache* SDMCFactory::GetSDMCContents() const {
|
RegisteredCache* SDMCFactory::GetSDMCContents() const {
|
||||||
return contents.get();
|
return contents.get();
|
||||||
}
|
}
|
||||||
|
|
|
@ -19,6 +19,9 @@ public:
|
||||||
~SDMCFactory();
|
~SDMCFactory();
|
||||||
|
|
||||||
ResultVal<VirtualDir> Open();
|
ResultVal<VirtualDir> Open();
|
||||||
|
|
||||||
|
VirtualDir GetSDMCContentDirectory() const;
|
||||||
|
|
||||||
RegisteredCache* GetSDMCContents() const;
|
RegisteredCache* GetSDMCContents() const;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
Loading…
Reference in a new issue