[VFS] Fixed "Install Content" option on Linux

This commit is contained in:
Gliniak 2025-03-18 22:16:37 +01:00
parent 1e2f903a4a
commit b7066c7a15

View file

@ -342,7 +342,8 @@ X_STATUS VirtualFileSystem::ExtractContentFile(Entry* entry,
XELOGI("Extracting file: {}", entry->path());
auto dest_name = base_path / xe::to_path(entry->path());
auto dest_name =
base_path / xe::to_path(utf8::fix_path_separators(entry->path()));
if (extract_to_root) {
dest_name = base_path / xe::to_path(entry->name());