Don't save settings on load, only on edit

This commit is contained in:
Willy-JL
2024-08-11 02:30:45 +02:00
parent 6f7b330ad8
commit 0ccc9c077f
6 changed files with 6 additions and 5 deletions

View File

@@ -23,7 +23,7 @@ void expansion_settings_load(ExpansionSettings* settings) {
if(!success) {
FURI_LOG_W(TAG, "Failed to load file, using defaults");
memset(settings, 0, sizeof(ExpansionSettings));
expansion_settings_save(settings);
// expansion_settings_save(settings);
}
}