From 9974be830bc72c1b5bf350bf3480c861a15ac13a Mon Sep 17 00:00:00 2001 From: VerstreuteSeele Date: Fri, 23 Dec 2022 23:24:01 +0100 Subject: [PATCH] Update dolphin_state.c --- applications/services/dolphin/helpers/dolphin_state.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/services/dolphin/helpers/dolphin_state.c b/applications/services/dolphin/helpers/dolphin_state.c index 5cfaec6b4..806259b69 100644 --- a/applications/services/dolphin/helpers/dolphin_state.c +++ b/applications/services/dolphin/helpers/dolphin_state.c @@ -83,7 +83,7 @@ uint64_t dolphin_state_timestamp() { bool dolphin_state_is_levelup(uint32_t icounter) { for (int i = 0; i<30; ++i) { - if ((icounter = level_array[i])) { + if ((icounter == level_array[i])) { return true; } };