From cd3c5e1d8864216e3627d5bd8e8d5c8541b9f570 Mon Sep 17 00:00:00 2001 From: Collecting Date: Mon, 22 Dec 2025 08:32:57 +0000 Subject: [PATCH] fs(feat): Add Backup Saves for Custom Save Paths Signed-off-by: Collecting --- src/common/settings.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/common/settings.h b/src/common/settings.h index 567ee6b3e..cb7a1df37 100644 --- a/src/common/settings.h +++ b/src/common/settings.h @@ -684,8 +684,9 @@ struct Values { // Key: build_id (hex string), Value: set of disabled cheat names std::map> disabled_cheats; - // Custom Save Paths + // Custom Save Paths (with backups) std::map custom_save_paths; + Setting backup_saves_to_nand{linkage, false, "backup_saves_to_nand", Category::DataStorage}; }; extern Values values;