From e50c8f496bae17574f042640b9575d136fa7f175 Mon Sep 17 00:00:00 2001 From: Willy-JL <49810075+Willy-JL@users.noreply.github.com> Date: Sat, 3 Jun 2023 23:00:04 +0100 Subject: [PATCH] Fix weird format --- lib/xtreme/settings.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/xtreme/settings.c b/lib/xtreme/settings.c index fb2a48d1b..ecf1c905b 100644 --- a/lib/xtreme/settings.c +++ b/lib/xtreme/settings.c @@ -118,9 +118,7 @@ void XTREME_SETTINGS_LOAD() { } flipper_format_rewind(file); if(flipper_format_read_bool(file, "dark_mode", &b, 1)) { - { - x->dark_mode = b; - } + x->dark_mode = b; } flipper_format_rewind(file); if(flipper_format_read_uint32(file, "favorite_timeout", &u, 1)) {