mirror of
https://github.com/xenia-project/xenia.git
synced 2025-12-06 07:12:03 +01:00
[VFS] Fixed "Install Content" option on Linux
This commit is contained in:
parent
1e2f903a4a
commit
b7066c7a15
|
|
@ -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());
|
||||
|
|
|
|||
Loading…
Reference in a new issue