Reset initing if boot fails with threading off.

Fixes #5580.
This commit is contained in:
Unknown W. Brackets 2014-02-28 09:58:10 -08:00
parent 909fc3d3f9
commit 5dec831abc

View file

@ -330,7 +330,11 @@ bool PSP_InitStart(const CoreParameter &coreParam, std::string *error_string) {
}
*error_string = coreParameter.errorString;
return coreParameter.fileToStart != "";
bool success = coreParameter.fileToStart != "";
if (!success) {
pspIsIniting = false;
}
return success;
}
bool PSP_InitUpdate(std::string *error_string) {