mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2026-06-15 07:29:27 -04:00
[hle/fs] fix handle Temporary/ProperSystem/SafeMode save spaces instead of ASSERT(false) (#4069)
OpenSaveDataFileSystem was missing a few SaveDataSpaceId mappings, so it would hit ASSERT(false). This broke games that open cache storage, with TOTK being the obvious one, because save enumeration could assert before the game even finished loading. Fixed this by mapping Temporary to user nand, and ProperSystem/SafeMode to system nand. These only get used for the free-space check here, so they just need to point somewhere sane. Fixes: https://github.com/eden-emulator/Issue-Reports/issues/368 Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/4069 Reviewed-by: Lizzie <lizzie@eden-emu.dev> Reviewed-by: MaranBr <maranbr@eden-emu.dev>
This commit is contained in:
parent
60e1032771
commit
d698c3b601
1 changed files with 16 additions and 2 deletions
|
|
@ -284,9 +284,17 @@ Result FSP_SRV::OpenSaveDataFileSystem(OutInterface<IFileSystem> out_interface,
|
|||
id = FileSys::StorageId::NandSystem;
|
||||
break;
|
||||
case FileSys::SaveDataSpaceId::Temporary:
|
||||
// ok this is definitely wrong. ASSERT(false) here just kills the whole game the first
|
||||
// time it opens cache storage, and plenty of games do that (TOTK for one). there is
|
||||
// user-space scratch storage so it belongs on user nand. map it, do not crash.
|
||||
id = FileSys::StorageId::NandUser;
|
||||
break;
|
||||
case FileSys::SaveDataSpaceId::ProperSystem:
|
||||
case FileSys::SaveDataSpaceId::SafeMode:
|
||||
ASSERT(false);
|
||||
// same deal for these two. they are system-level spaces so they go on system nand.
|
||||
// way better than nuking the title over a save-space id we just did not list out.
|
||||
id = FileSys::StorageId::NandSystem;
|
||||
break;
|
||||
}
|
||||
|
||||
*out_interface =
|
||||
|
|
@ -324,9 +332,15 @@ Result FSP_SRV::OpenSaveDataFileSystemBySystemSaveDataId(OutInterface<IFileSyste
|
|||
id = FileSys::StorageId::NandSystem;
|
||||
break;
|
||||
case FileSys::SaveDataSpaceId::Temporary:
|
||||
// same broken switch as OpenSaveDataFileSystem above. do not ASSERT(false) and kill the
|
||||
// game over a save-space id, just map Temporary to user nand like it should be.
|
||||
id = FileSys::StorageId::NandUser;
|
||||
break;
|
||||
case FileSys::SaveDataSpaceId::ProperSystem:
|
||||
case FileSys::SaveDataSpaceId::SafeMode:
|
||||
ASSERT(false);
|
||||
// system spaces -> system nand. handled, not crashed.
|
||||
id = FileSys::StorageId::NandSystem;
|
||||
break;
|
||||
}
|
||||
|
||||
*out_interface =
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue