From b7066c7a156bcf6c92c46fe35ad7784523e9fd63 Mon Sep 17 00:00:00 2001 From: Gliniak Date: Tue, 18 Mar 2025 22:16:37 +0100 Subject: [PATCH] [VFS] Fixed "Install Content" option on Linux --- src/xenia/vfs/virtual_file_system.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/xenia/vfs/virtual_file_system.cc b/src/xenia/vfs/virtual_file_system.cc index c1f9cfc58..985031ea8 100644 --- a/src/xenia/vfs/virtual_file_system.cc +++ b/src/xenia/vfs/virtual_file_system.cc @@ -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());