mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-09 00:11:24 +12:00
Loader: skip savestate check in add_only mode
This commit is contained in:
parent
ff082b98cb
commit
1e7b2c052a
1 changed files with 29 additions and 26 deletions
|
@ -721,6 +721,8 @@ game_boot_result Emulator::Load(const std::string& title_id, bool add_only, bool
|
||||||
{
|
{
|
||||||
m_ar.reset();
|
m_ar.reset();
|
||||||
|
|
||||||
|
if (!add_only)
|
||||||
|
{
|
||||||
if (m_config_mode == cfg_mode::continuous)
|
if (m_config_mode == cfg_mode::continuous)
|
||||||
{
|
{
|
||||||
// The program is being booted from another running program
|
// The program is being booted from another running program
|
||||||
|
@ -752,6 +754,7 @@ game_boot_result Emulator::Load(const std::string& title_id, bool add_only, bool
|
||||||
|
|
||||||
m_boot_source_type = CELL_GAME_GAMETYPE_SYS;
|
m_boot_source_type = CELL_GAME_GAMETYPE_SYS;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (!IsStopped())
|
if (!IsStopped())
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue