mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-15 11:18:36 +12:00
Fix game category issues
Fix cellGameDataCheckCreate2 PARAM.SFO Fix trophy initialization for gamedata (game patch) Implement psf::assign Potentially fix cellGameSetParamString
This commit is contained in:
parent
e768bdc80f
commit
14929a1497
3 changed files with 45 additions and 29 deletions
|
@ -196,7 +196,7 @@ error_code sceNpTrophyCreateContext(vm::ptr<u32> context, vm::cptr<SceNpCommunic
|
|||
}
|
||||
|
||||
// open trophy pack file
|
||||
fs::file stream(vfs::get((Emu.GetCat() == "DG" ? "/dev_bdvd/PS3_GAME/TROPDIR/"s : "/dev_hdd0/game/" + Emu.GetTitleID() + "/TROPDIR/") + name + "/TROPHY.TRP"));
|
||||
fs::file stream(vfs::get((Emu.GetCat() == "DG" || Emu.GetCat() == "GD" ? "/dev_bdvd/PS3_GAME/TROPDIR/"s : "/dev_hdd0/game/" + Emu.GetTitleID() + "/TROPDIR/") + name + "/TROPHY.TRP"));
|
||||
|
||||
// check if exists and opened
|
||||
if (!stream)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue