Oops.
This commit is contained in:
parent
9fa4ae7b15
commit
9be8fc6c69
2 changed files with 5 additions and 5 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue