diff options
| author | Subv <subv2112@gmail.com> | 2018-03-04 13:03:58 -0500 |
|---|---|---|
| committer | Subv <subv2112@gmail.com> | 2018-03-04 14:30:07 -0500 |
| commit | 0eefe6e4d15cbc7a5902dfbe5e7742ef4ea71902 (patch) | |
| tree | d6fbf1e18b6b17fcb089306af26c48331100814c /src/core/file_sys/savedata_factory.h | |
| parent | 7e7110b3b9f466d3e3f66605d94a2fa57a7724bb (diff) | |
FS: Make EnsureSaveData create the savedata folder when called for the first time.
Diffstat (limited to 'src/core/file_sys/savedata_factory.h')
| -rw-r--r-- | src/core/file_sys/savedata_factory.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/file_sys/savedata_factory.h b/src/core/file_sys/savedata_factory.h index 726743fde..73a42aab6 100644 --- a/src/core/file_sys/savedata_factory.h +++ b/src/core/file_sys/savedata_factory.h @@ -21,11 +21,13 @@ public: return "SaveData_Factory"; } ResultVal<std::unique_ptr<FileSystemBackend>> Open(const Path& path) override; - ResultCode Format(const Path& path, const FileSys::ArchiveFormatInfo& format_info) override; + ResultCode Format(const Path& path) override; ResultVal<ArchiveFormatInfo> GetFormatInfo(const Path& path) const override; private: std::string nand_directory; + + std::string GetFullPath() const; }; } // namespace FileSys |
