From b71fbf334a59f23cc99bbd30da91733fdb8094ee Mon Sep 17 00:00:00 2001 From: balko <71823820+BalkoBalkho@users.noreply.github.com> Date: Thu, 25 Sep 2025 22:42:02 +0100 Subject: [PATCH] add symlink directory "update:" that points to mount path --- src/xenia/emulator.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/xenia/emulator.cc b/src/xenia/emulator.cc index cca28982f..87b5aab8a 100644 --- a/src/xenia/emulator.cc +++ b/src/xenia/emulator.cc @@ -316,6 +316,7 @@ X_STATUS Emulator::LaunchXexFile(const std::filesystem::path& path) { // Create symlinks to the device. file_system_->RegisterSymbolicLink("game:", mount_path); + file_system_->RegisterSymbolicLink("update:", mount_path); file_system_->RegisterSymbolicLink("d:", mount_path); // Get just the filename (foo.xex). @@ -342,6 +343,7 @@ X_STATUS Emulator::LaunchDiscImage(const std::filesystem::path& path) { // Create symlinks to the device. file_system_->RegisterSymbolicLink("game:", mount_path); + file_system_->RegisterSymbolicLink("update:", mount_path); file_system_->RegisterSymbolicLink("d:", mount_path); // Launch the game. @@ -365,6 +367,7 @@ X_STATUS Emulator::LaunchStfsContainer(const std::filesystem::path& path) { } file_system_->RegisterSymbolicLink("game:", mount_path); + file_system_->RegisterSymbolicLink("update:", mount_path); file_system_->RegisterSymbolicLink("d:", mount_path); // Launch the game.