mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-22 05:45:46 +00:00
HLE/FS: Change the error code returned when an ExtSaveData archive is not found.
This allows Fire Emblem to boot again.
This commit is contained in:
parent
3aa42627a3
commit
f707026ac5
5 changed files with 45 additions and 33 deletions
|
@ -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
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue