mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
minor fix
This commit is contained in:
parent
28bfc4c05d
commit
458f8cfac3
1 changed files with 3 additions and 1 deletions
|
@ -496,8 +496,10 @@ static u32 sceUmdGetErrorStat()
|
|||
|
||||
void __UmdReplace(std::string filepath) {
|
||||
char *error = "";
|
||||
if (!UmdReplace(filepath, error))
|
||||
if (!UmdReplace(filepath, error)) {
|
||||
ERROR_LOG(SCEIO, "UMD Replace failed: %s", error);
|
||||
return;
|
||||
}
|
||||
|
||||
UMDInserted = false;
|
||||
CoreTiming::ScheduleEvent(usToCycles(200*1000), umdInsertChangeEvent, 0); // Wait sceUmdCheckMedium call
|
||||
|
|
Loading…
Add table
Reference in a new issue