Loaders: Avoid fileToStart compare with "".

This commit is contained in:
Henrik Rydgård 2021-05-09 17:38:39 -07:00 committed by Unknown W. Brackets
parent a40bb2eaa1
commit ac68dac029
2 changed files with 6 additions and 6 deletions

View file

@ -328,7 +328,7 @@ bool Load_PSP_ISO(FileLoader *fileLoader, std::string *error_string) {
} else {
coreState = CORE_BOOT_ERROR;
// TODO: This is a crummy way to communicate the error...
PSP_CoreParameter().fileToStart = "";
PSP_CoreParameter().fileToStart.clear();
}
});
return true;
@ -461,7 +461,7 @@ bool Load_PSP_ELF_PBP(FileLoader *fileLoader, std::string *error_string) {
} else {
coreState = CORE_BOOT_ERROR;
// TODO: This is a crummy way to communicate the error...
PSP_CoreParameter().fileToStart = "";
PSP_CoreParameter().fileToStart.clear();
}
});
return true;
@ -485,7 +485,7 @@ bool Load_PSP_GE_Dump(FileLoader *fileLoader, std::string *error_string) {
} else {
coreState = CORE_BOOT_ERROR;
// TODO: This is a crummy way to communicate the error...
PSP_CoreParameter().fileToStart = "";
PSP_CoreParameter().fileToStart.clear();
}
});
return true;

View file

@ -311,7 +311,7 @@ bool CPU_Init() {
// Note: this may return before init is complete, which is checked if CPU_IsReady().
if (!LoadFile(&loadedFile, &coreParameter.errorString)) {
CPU_Shutdown();
coreParameter.fileToStart = "";
coreParameter.fileToStart.clear();
return false;
}
@ -426,7 +426,7 @@ bool PSP_InitStart(const CoreParameter &coreParam, std::string *error_string) {
}
*error_string = coreParameter.errorString;
bool success = coreParameter.fileToStart != "";
bool success = !coreParameter.fileToStart.empty();
if (!success) {
Core_NotifyLifecycle(CoreLifecycle::START_COMPLETE);
pspIsIniting = false;
@ -443,7 +443,7 @@ bool PSP_InitUpdate(std::string *error_string) {
return false;
}
bool success = coreParameter.fileToStart != "";
bool success = !coreParameter.fileToStart.empty();
*error_string = coreParameter.errorString;
if (success && gpu == nullptr) {
PSP_SetLoading("Starting graphics...");