mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 06:55:09 +00:00
PRX/savestates/VSH: Associate PRX with library, fix VSH browser (#13221)
* PRX/savestate:s Associate PRX with library * VFS/Savestates: Fix host_root resolving * Savestates: Fix segfault in ppu_initialize * SPU: Avoid some log spam * VSH/sys_vm: Fix limit on root processes
This commit is contained in:
parent
1852b370d7
commit
e6a7597444
10 changed files with 92 additions and 37 deletions
|
|
@ -1077,10 +1077,10 @@ game_boot_result Emulator::Load(const std::string& title_id, bool add_only, bool
|
|||
m_path = disc;
|
||||
m_path += std::string_view(argv[0]).substr(9);
|
||||
}
|
||||
else if (argv[0].starts_with("/host_root"sv))
|
||||
else if (argv[0].starts_with("/host_root/"sv))
|
||||
{
|
||||
sys_log.error("Host root has been used in path redirection!");
|
||||
m_path = argv[0].substr(9);
|
||||
m_path = argv[0].substr(11);
|
||||
}
|
||||
else if (argv[0].starts_with("/dev_hdd1"sv))
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue