mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-26 23:10:38 +00:00
UI: Show more detailed load error messages.
This commit is contained in:
parent
dce3885eae
commit
49a4edbab5
@ -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…
Reference in New Issue
Block a user