From 70926d388de0cf8272b748e2183ec4413b79e5d9 Mon Sep 17 00:00:00 2001 From: Collecting Date: Wed, 31 Dec 2025 03:52:44 +0000 Subject: [PATCH] feat(fs): Cross-Compatible Emulator Save Pathing w/ Custom Save Paths Signed-off-by: Collecting --- src/common/settings.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/common/settings.h b/src/common/settings.h index a2d37f10b..e6c0f5500 100644 --- a/src/common/settings.h +++ b/src/common/settings.h @@ -686,6 +686,9 @@ struct Values { // Custom Save Paths (with backups) std::map custom_save_paths; + // This stores the external path used for Intelligent Mirroring sync + std::map mirrored_save_paths; + Setting global_custom_save_path_enabled{linkage, false, "global_custom_save_path_enabled", Category::DataStorage}; Setting global_custom_save_path{linkage, std::string(), "global_custom_save_path", Category::DataStorage}; Setting backup_saves_to_nand{linkage, false, "backup_saves_to_nand", Category::DataStorage};