fs(feat): Add Backup Saves for Custom Save Paths

Signed-off-by: Collecting <collecting@noreply.localhost>
This commit is contained in:
Collecting
2025-12-22 08:32:57 +00:00
parent a672e86f8c
commit cd3c5e1d88

View File

@@ -684,8 +684,9 @@ struct Values {
// Key: build_id (hex string), Value: set of disabled cheat names
std::map<std::string, std::set<std::string>> disabled_cheats;
// Custom Save Paths
// Custom Save Paths (with backups)
std::map<u64, std::string> custom_save_paths;
Setting<bool> backup_saves_to_nand{linkage, false, "backup_saves_to_nand", Category::DataStorage};
};
extern Values values;