mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
parent
909fc3d3f9
commit
5dec831abc
1 changed files with 5 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue