mirror of https://github.com/cemu-project/Cemu.git
parent
8459cd928c
commit
01c58555f3
|
@ -647,8 +647,8 @@ std::string TitleInfo::GetInstallPath() const
|
||||||
TitleIdParser tip(titleId);
|
TitleIdParser tip(titleId);
|
||||||
std::string tmp;
|
std::string tmp;
|
||||||
if (tip.IsSystemTitle())
|
if (tip.IsSystemTitle())
|
||||||
tmp = fmt::format("sys\\title\\{:08x}\\{:08x}", GetTitleIdHigh(titleId), GetTitleIdLow(titleId));
|
tmp = fmt::format("sys/title/{:08x}/{:08x}", GetTitleIdHigh(titleId), GetTitleIdLow(titleId));
|
||||||
else
|
else
|
||||||
tmp = fmt::format("usr\\title\\{:08x}\\{:08x}", GetTitleIdHigh(titleId), GetTitleIdLow(titleId));
|
tmp = fmt::format("usr/title/{:08x}/{:08x}", GetTitleIdHigh(titleId), GetTitleIdLow(titleId));
|
||||||
return tmp;
|
return tmp;
|
||||||
}
|
}
|
Loading…
Reference in New Issue