[XAM] Use correct path for STFS headers
This commit is contained in:
parent
c3551636e1
commit
58605ba04a
|
@ -96,7 +96,8 @@ std::vector<XCONTENT_DATA> ContentManager::ListContent(uint32_t device_id,
|
||||||
|
|
||||||
auto headers_path = file_info.path + file_info.name;
|
auto headers_path = file_info.path + file_info.name;
|
||||||
if (file_info.type == xe::filesystem::FileInfo::Type::kDirectory) {
|
if (file_info.type == xe::filesystem::FileInfo::Type::kDirectory) {
|
||||||
headers_path = headers_path + ContentManager::kStfsHeadersExtension;
|
headers_path =
|
||||||
|
xe::join_paths(headers_path, ContentManager::kStfsHeadersExtension);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (xe::filesystem::PathExists(headers_path)) {
|
if (xe::filesystem::PathExists(headers_path)) {
|
||||||
|
|
Loading…
Reference in New Issue