mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
UI: Show more detailed load error messages.
This commit is contained in:
parent
dce3885eae
commit
49a4edbab5
1 changed files with 4 additions and 1 deletions
|
@ -412,7 +412,10 @@ bool PSP_InitStart(const CoreParameter &coreParam, std::string *error_string) {
|
|||
PSP_SetLoading("Loading game...");
|
||||
|
||||
if (!CPU_Init()) {
|
||||
*error_string = "Failed initializing CPU/Memory";
|
||||
*error_string = coreParameter.errorString;
|
||||
if (error_string->empty()) {
|
||||
*error_string = "Failed initializing CPU/Memory";
|
||||
}
|
||||
pspIsIniting = false;
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue