diff options
| author | 2018-03-04 13:03:58 -0500 | |
|---|---|---|
| committer | 2018-03-04 14:30:07 -0500 | |
| commit | 0eefe6e4d15cbc7a5902dfbe5e7742ef4ea71902 (patch) | |
| tree | d6fbf1e18b6b17fcb089306af26c48331100814c /src/core/file_sys/filesystem.h | |
| parent | Merge pull request #226 from Subv/buffer_queue_event (diff) | |
| download | yuzu-0eefe6e4d15cbc7a5902dfbe5e7742ef4ea71902.tar.gz yuzu-0eefe6e4d15cbc7a5902dfbe5e7742ef4ea71902.tar.xz yuzu-0eefe6e4d15cbc7a5902dfbe5e7742ef4ea71902.zip | |
FS: Make EnsureSaveData create the savedata folder when called for the first time.
Diffstat (limited to 'src/core/file_sys/filesystem.h')
| -rw-r--r-- | src/core/file_sys/filesystem.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/file_sys/filesystem.h b/src/core/file_sys/filesystem.h index df4e66a0b..94ad2abf2 100644 --- a/src/core/file_sys/filesystem.h +++ b/src/core/file_sys/filesystem.h | |||
| @@ -183,10 +183,9 @@ public: | |||
| 183 | /** | 183 | /** |
| 184 | * Deletes the archive contents and then re-creates the base folder | 184 | * Deletes the archive contents and then re-creates the base folder |
| 185 | * @param path Path to the archive | 185 | * @param path Path to the archive |
| 186 | * @param format_info Format information for the new archive | ||
| 187 | * @return ResultCode of the operation, 0 on success | 186 | * @return ResultCode of the operation, 0 on success |
| 188 | */ | 187 | */ |
| 189 | virtual ResultCode Format(const Path& path, const FileSys::ArchiveFormatInfo& format_info) = 0; | 188 | virtual ResultCode Format(const Path& path) = 0; |
| 190 | 189 | ||
| 191 | /** | 190 | /** |
| 192 | * Retrieves the format info about the archive with the specified path | 191 | * Retrieves the format info about the archive with the specified path |