This commit is contained in:
shenweip 2020-01-04 11:14:32 +08:00
parent 9fa4ae7b15
commit 9be8fc6c69
2 changed files with 5 additions and 5 deletions

View file

@ -497,7 +497,7 @@ static u32 sceUmdGetErrorStat()
void __UmdReplace(std::string filepath) { void __UmdReplace(std::string filepath) {
std::string error = ""; std::string error = "";
if (!UmdReplace(filepath, error)) { if (!UmdReplace(filepath, error)) {
ERROR_LOG(SCEIO, "UMD Replace failed: %s", error); ERROR_LOG(SCEIO, "UMD Replace failed: %s", error.c_str());
return; return;
} }

View file

@ -165,10 +165,10 @@ bool ReInitMemoryForGameISO(FileLoader *fileLoader) {
blockSystem = new ISOBlockSystem(iso); blockSystem = new ISOBlockSystem(iso);
} }
pspFileSystem.Remount("umd0:", blockSystem); pspFileSystem.Remount("umd0:", blockSystem);
pspFileSystem.Remount("umd1:", blockSystem); pspFileSystem.Remount("umd1:", blockSystem);
pspFileSystem.Remount("umd:", blockSystem); pspFileSystem.Remount("umd:", blockSystem);
pspFileSystem.Remount("disc0:", fileSystem); pspFileSystem.Remount("disc0:", fileSystem);
return true; return true;
} }