mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-13 10:18:40 +12:00
Do not dare to touch HDD1 cache during game process respawn!
This commit is contained in:
parent
4e6be9172a
commit
285322982f
1 changed files with 3 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue