HostInterface: Don't try to resume system without game code
This commit is contained in:
parent
6efcf2d912
commit
dcc9da3f5e
|
@ -487,8 +487,18 @@ bool HostInterface::ResumeSystemFromState(const char* filename, bool boot_on_fai
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
const bool global = m_system->GetRunningCode().empty();
|
const bool global = m_system->GetRunningCode().empty();
|
||||||
const std::string path =
|
if (m_system->GetRunningCode().empty())
|
||||||
global ? GetGlobalSaveStateFileName(-1) : GetGameSaveStateFileName(m_system->GetRunningCode().c_str(), -1);
|
{
|
||||||
|
ReportFormattedError("Cannot resume system with undetectable game code from '%s'.", filename);
|
||||||
|
if (!boot_on_failure)
|
||||||
|
{
|
||||||
|
DestroySystem();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
const std::string path = GetGameSaveStateFileName(m_system->GetRunningCode().c_str(), -1);
|
||||||
if (FileSystem::FileExists(path.c_str()))
|
if (FileSystem::FileExists(path.c_str()))
|
||||||
{
|
{
|
||||||
if (!LoadState(path.c_str()) && !boot_on_failure)
|
if (!LoadState(path.c_str()) && !boot_on_failure)
|
||||||
|
@ -504,6 +514,7 @@ bool HostInterface::ResumeSystemFromState(const char* filename, bool boot_on_fai
|
||||||
DestroySystem();
|
DestroySystem();
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue