From dd72f21108af510967b089c5015ae0abc116e305 Mon Sep 17 00:00:00 2001 From: Willy-JL <49810075+Willy-JL@users.noreply.github.com> Date: Wed, 31 May 2023 15:43:26 +0100 Subject: [PATCH] Fix migrate comments --- furi/flipper.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/furi/flipper.c b/furi/flipper.c index 49d99b03a..c42ba0fdd 100644 --- a/furi/flipper.c +++ b/furi/flipper.c @@ -45,9 +45,10 @@ void flipper_migrate_files() { storage_common_remove(storage, INT_PATH(".passport.settings")); storage_common_remove(storage, INT_PATH(".region_data")); - // Migrate files, Int -> Ext + // Migrate files storage_common_copy(storage, ARCHIVE_FAV_OLD_PATH, ARCHIVE_FAV_PATH); storage_common_remove(storage, ARCHIVE_FAV_OLD_PATH); + // Int -> Ext storage_common_copy(storage, BT_SETTINGS_OLD_PATH, BT_SETTINGS_PATH); storage_common_remove(storage, BT_SETTINGS_OLD_PATH); storage_common_copy(storage, DOLPHIN_STATE_OLD_PATH, DOLPHIN_STATE_PATH);