mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-07-22 10:04:39 +00:00
SaveData: respect install dir in param.sfo to select the game save folder (#2951)
This commit is contained in:
parent
6ee205d4e2
commit
5eb58799fe
@ -316,7 +316,9 @@ static std::array<std::optional<SaveInstance>, 16> g_mount_slots;
|
||||
|
||||
static void initialize() {
|
||||
g_initialized = true;
|
||||
g_game_serial = ElfInfo::Instance().GameSerial();
|
||||
g_game_serial = Common::Singleton<PSF>::Instance()
|
||||
->GetString("INSTALL_DIR_SAVEDATA")
|
||||
.value_or(ElfInfo::Instance().GameSerial());
|
||||
g_fw_ver = ElfInfo::Instance().FirmwareVer();
|
||||
Backup::StartThread();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user