mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-23 14:25:37 +00:00
Qt: Fix resume with a save state again
This commit is contained in:
parent
c6582bb7e4
commit
9bf1d61f4f
|
@ -361,24 +361,23 @@ void QtHostInterface::resumeSystemFromState(const QString& filename, bool boot_o
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string state_filename = filename.toStdString();
|
|
||||||
if (state_filename.empty())
|
|
||||||
{
|
|
||||||
state_filename = GetMostRecentResumeSaveStatePath();
|
|
||||||
if (state_filename.empty())
|
|
||||||
{
|
|
||||||
emit errorReported(tr("No resume save state found."));
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
emit emulationStarting();
|
emit emulationStarting();
|
||||||
ResumeSystemFromState(state_filename.c_str(), boot_on_failure);
|
if (filename.isEmpty())
|
||||||
|
ResumeSystemFromMostRecentState();
|
||||||
|
else
|
||||||
|
ResumeSystemFromState(filename.toStdString().c_str(), boot_on_failure);
|
||||||
}
|
}
|
||||||
|
|
||||||
void QtHostInterface::resumeSystemFromMostRecentState()
|
void QtHostInterface::resumeSystemFromMostRecentState()
|
||||||
{
|
{
|
||||||
resumeSystemFromState(QString(), false);
|
std::string state_filename = GetMostRecentResumeSaveStatePath();
|
||||||
|
if (state_filename.empty())
|
||||||
|
{
|
||||||
|
emit errorReported(tr("No resume save state found."));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
loadState(QString::fromStdString(state_filename));
|
||||||
}
|
}
|
||||||
|
|
||||||
void QtHostInterface::onDisplayWindowKeyEvent(int key, bool pressed)
|
void QtHostInterface::onDisplayWindowKeyEvent(int key, bool pressed)
|
||||||
|
|
Loading…
Reference in a new issue