Add support for config savegame

This commit is contained in:
zhupengfei
2019-10-02 20:06:39 +08:00
parent 380a1da748
commit 5cbe69388f
5 changed files with 56 additions and 16 deletions
+3 -2
View File
@@ -57,9 +57,10 @@ struct Config {
std::string safe_mode_firm_path; ///< Path to safe mode firm (A folder) (Sysdata 1)
std::string seed_db_path; ///< Path to seeddb.bin (Sysdata 2)
std::string secret_sector_path; ///< Path to secret sector (New3DS only) (Sysdata 3)
std::string system_archives_path; ///< Path to system archives.
// Note: Sysdata 4 is aes_keys.txt (slot0x25KeyX)
std::string config_savegame_path; ///< Path to config savegame (Sysdata 5)
// Sysdata 4 is aes_keys.db (slot0x25KeyX)
std::string system_archives_path; ///< Path to system archives.
};
class SDMCImporter {