diff options
| author | Subv <subv2112@gmail.com> | 2016-03-03 13:05:50 -0500 |
|---|---|---|
| committer | Subv <subv2112@gmail.com> | 2016-03-20 14:52:50 -0500 |
| commit | f707026ac50c53716ac697ed439630d7728e9db6 (patch) | |
| tree | 6e8b20bcfb2e72645a7f098c78574917f613452e /src/core/file_sys/archive_extsavedata.h | |
| parent | 3aa42627a3a35d8a4fb9acdcced24977d1f269cd (diff) | |
HLE/FS: Change the error code returned when an ExtSaveData archive is not found.
This allows Fire Emblem to boot again.
Diffstat (limited to 'src/core/file_sys/archive_extsavedata.h')
| -rw-r--r-- | src/core/file_sys/archive_extsavedata.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/file_sys/archive_extsavedata.h b/src/core/file_sys/archive_extsavedata.h index 1ebe0529f..287a6fee1 100644 --- a/src/core/file_sys/archive_extsavedata.h +++ b/src/core/file_sys/archive_extsavedata.h @@ -42,7 +42,7 @@ public: * @param icon_data Binary data of the icon * @param icon_size Size of the icon data */ - void WriteIcon(const Path& path, const u8* icon_data, u32 icon_size); + void WriteIcon(const Path& path, const u8* icon_data, size_t icon_size); private: /** @@ -51,6 +51,7 @@ private: * See GetExtSaveDataPath for the code that extracts this data from an archive path. */ std::string mount_point; + bool shared; ///< Whether this archive represents an ExtSaveData archive or a SharedExtSaveData archive }; /** |
