From d287c191ee80be1f9d44df10b6fbb60a9e59bf8e Mon Sep 17 00:00:00 2001 From: Robin Jones Date: Wed, 1 Nov 2023 21:18:26 +0000 Subject: [PATCH] Update submodules (#64) ## Description Updates the library submodules. NOTE: `minic` has a breaking change which required adding `MINI_FLAGS_SKIP_EMPTY_GROUPS`. See: https://github.com/univrsal/mini.c/commit/6229658b9d275fb760bcee119104bdbd7873536e ## Motivation and Context Keeps the project up-to-date ## How Has This Been Tested? ## Screenshots ## Types of changes - [ ] Improvement (non-breaking change that adds a new feature) - [ ] Bug fix (fixes an issue) - [ ] Breaking change (breaking change) - [x] Config and build (change in the configuration and build system, has no impact on code or features) ## Checklist: - [ ] My code follows the code style of this project. - [ ] My change requires a change to the documentation. - [ ] I have updated the documentation accordingly. - [ ] I have added tests to cover my changes. - [ ] All new and existing tests passed. Signed-off-by: GITHUB_USER --- libdragon | 2 +- src/libs/mini.c | 2 +- src/libs/miniz | 2 +- src/menu/settings.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libdragon b/libdragon index dd2202a6..4b38fd56 160000 --- a/libdragon +++ b/libdragon @@ -1 +1 @@ -Subproject commit dd2202a6082cd3d92f4c22e64b27f148612c4c3a +Subproject commit 4b38fd5618007e7ed9040107d0f7e52f2de81a22 diff --git a/src/libs/mini.c b/src/libs/mini.c index f713e3c9..6229658b 160000 --- a/src/libs/mini.c +++ b/src/libs/mini.c @@ -1 +1 @@ -Subproject commit f713e3c98ee2340a90334da6084c34ec2109a7e6 +Subproject commit 6229658b9d275fb760bcee119104bdbd7873536e diff --git a/src/libs/miniz b/src/libs/miniz index 9ae305f6..18795fa6 160000 --- a/src/libs/miniz +++ b/src/libs/miniz @@ -1 +1 @@ -Subproject commit 9ae305f6e109f8f1fbd2130458f1ee6197269b3b +Subproject commit 18795fa61e590521381ba9e1fa4a4ab362b095f6 diff --git a/src/menu/settings.c b/src/menu/settings.c index df642c61..882293c6 100644 --- a/src/menu/settings.c +++ b/src/menu/settings.c @@ -55,7 +55,7 @@ void settings_save (settings_t *settings) { // mini_set_bool(ini, "menu_beta_flag", "sound_enabled", init.sound_enabled); // mini_set_bool(ini, "menu_beta_flag", "rumble_enabled", init.rumble_enabled); - mini_save(ini); + mini_save(ini, MINI_FLAGS_SKIP_EMPTY_GROUPS); mini_free(ini); }