mirror of
https://git.citron-emu.org/citron/emulator
synced 2026-01-24 11:43:27 +00:00
fs(feat): Add Backup Saves for Custom Save Paths
Signed-off-by: Collecting <collecting@noreply.localhost>
This commit is contained in:
@@ -71,6 +71,7 @@ void ConfigureFilesystem::SetConfiguration() {
|
||||
ui->dump_nso->setChecked(Settings::values.dump_nso.GetValue());
|
||||
ui->cache_game_list->setChecked(UISettings::values.cache_game_list.GetValue());
|
||||
ui->prompt_for_autoloader->setChecked(UISettings::values.prompt_for_autoloader.GetValue());
|
||||
ui->backup_saves_to_nand->setChecked(Settings::values.backup_saves_to_nand.GetValue());
|
||||
|
||||
// NCA Scanning Toggle
|
||||
ui->scan_nca->setChecked(UISettings::values.scan_nca.GetValue());
|
||||
@@ -102,6 +103,7 @@ void ConfigureFilesystem::ApplyConfiguration() {
|
||||
Settings::values.dump_nso = ui->dump_nso->isChecked();
|
||||
UISettings::values.cache_game_list = ui->cache_game_list->isChecked();
|
||||
UISettings::values.prompt_for_autoloader = ui->prompt_for_autoloader->isChecked();
|
||||
Settings::values.backup_saves_to_nand.SetValue(ui->backup_saves_to_nand->isChecked());
|
||||
|
||||
// NCA Scanning Toggle
|
||||
UISettings::values.scan_nca = ui->scan_nca->isChecked();
|
||||
|
||||
Reference in New Issue
Block a user