[XAM] Fixed issue with XamContentCreate reassigning already assigned symlinks
This commit is contained in:
committed by
Radosław Gliński
parent
bc69b95db6
commit
9bfaff5040
@@ -621,7 +621,7 @@ const object_ref<UserModule> KernelState::LoadTitleUpdate(
|
||||
"UPDATE", 0, *title_update, content_license, disc_number);
|
||||
|
||||
std::string mount_path = "";
|
||||
if (!file_system()->FindSymbolicLink("game:", mount_path)) {
|
||||
if (!file_system()->FindSymbolicLink(kDefaultGameSymbolicLink, mount_path)) {
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
@@ -630,7 +630,8 @@ const object_ref<UserModule> KernelState::LoadTitleUpdate(
|
||||
}
|
||||
|
||||
std::string resolved_path = "";
|
||||
if (!file_system()->FindSymbolicLink("UPDATE:", resolved_path)) {
|
||||
if (!file_system()->FindSymbolicLink(kDefaultUpdateSymbolicLink,
|
||||
resolved_path)) {
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user