diff options
| author | bunnei <bunneidev@gmail.com> | 2018-03-04 15:49:42 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-03-04 15:49:42 -0500 |
| commit | 80562aaf64413f5740138dba70393789d10de580 (patch) | |
| tree | 01b8f6a28202295b25eaa90e8cbbef5a9b3c0c6f /src/core/file_sys/romfs_factory.cpp | |
| parent | 3c3d5eeddf34bc52b2770df8f1c4cda1dc8e5b77 (diff) | |
| parent | 84e1c0a43016e4c0e99aa50b1486af53b7d05513 (diff) | |
Merge pull request #229 from Subv/ensuresavedata_impl
FS: Make EnsureSaveData create the save data if it doesn't already exist.
Diffstat (limited to 'src/core/file_sys/romfs_factory.cpp')
| -rw-r--r-- | src/core/file_sys/romfs_factory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/file_sys/romfs_factory.cpp b/src/core/file_sys/romfs_factory.cpp index e0de49f05..b21427948 100644 --- a/src/core/file_sys/romfs_factory.cpp +++ b/src/core/file_sys/romfs_factory.cpp @@ -23,7 +23,7 @@ ResultVal<std::unique_ptr<FileSystemBackend>> RomFS_Factory::Open(const Path& pa return MakeResult<std::unique_ptr<FileSystemBackend>>(std::move(archive)); } -ResultCode RomFS_Factory::Format(const Path& path, const FileSys::ArchiveFormatInfo& format_info) { +ResultCode RomFS_Factory::Format(const Path& path) { LOG_ERROR(Service_FS, "Unimplemented Format archive %s", GetName().c_str()); // TODO(bunnei): Find the right error code for this return ResultCode(-1); |
