mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-17 08:11:51 +00:00
Do not dare to touch HDD1 cache during game process respawn!
This commit is contained in:
parent
4e6be9172a
commit
285322982f
@ -204,6 +204,8 @@ void Emulator::Init(bool add_only)
|
|||||||
sys_log.notice("Hdd1: %s", vfs::get("/dev_hdd1"));
|
sys_log.notice("Hdd1: %s", vfs::get("/dev_hdd1"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const bool is_exitspawn = m_config_mode == cfg_mode::continuous;
|
||||||
|
|
||||||
// Load config file
|
// Load config file
|
||||||
if (m_config_mode == cfg_mode::config_override)
|
if (m_config_mode == cfg_mode::config_override)
|
||||||
{
|
{
|
||||||
@ -378,7 +380,7 @@ void Emulator::Init(bool add_only)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Limit cache size
|
// Limit cache size
|
||||||
if (g_cfg.vfs.limit_cache_size)
|
if (!is_exitspawn && g_cfg.vfs.limit_cache_size)
|
||||||
rpcs3::cache::limit_cache_size();
|
rpcs3::cache::limit_cache_size();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user