sdmc_factory: Add accessor for SDMC Album directory
This commit is contained in:
parent
0084cceb20
commit
08c0783d34
2 changed files with 6 additions and 0 deletions
|
@ -36,4 +36,8 @@ PlaceholderCache* SDMCFactory::GetSDMCPlaceholder() const {
|
|||
return placeholder.get();
|
||||
}
|
||||
|
||||
VirtualDir SDMCFactory::GetImageDirectory() const {
|
||||
return GetOrCreateDirectoryRelative(dir, "/Nintendo/Album");
|
||||
}
|
||||
|
||||
} // namespace FileSys
|
||||
|
|
|
@ -26,6 +26,8 @@ public:
|
|||
RegisteredCache* GetSDMCContents() const;
|
||||
PlaceholderCache* GetSDMCPlaceholder() const;
|
||||
|
||||
VirtualDir GetImageDirectory() const;
|
||||
|
||||
private:
|
||||
VirtualDir dir;
|
||||
|
||||
|
|
Loading…
Reference in a new issue