Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorあく <alleteam@gmail.com>2021-07-07 11:57:49 +0300
committerGitHub <noreply@github.com>2021-07-07 11:57:49 +0300
commita7283280eff93f22c8fc1b65573ae0a6447e94bf (patch)
tree89501b407baf96f3070de9e893ab1be467201d16 /applications/gui/view_dispatcher.c
parent607e873404d746c692c38482f03c54ed3edce26c (diff)
GUI: Icons and IconsAnimation refactoring. Switch assets to new Icon Api (#566)
* GUI: Icons and IconsAnimation refactoring. Switch assets to new Icon API. * Gui: icon and animation draw now do not accept null pointer * Format Sources * Fix no debug build * Furi: stricter checks in memmgr
Diffstat (limited to 'applications/gui/view_dispatcher.c')
-rw-r--r--applications/gui/view_dispatcher.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/gui/view_dispatcher.c b/applications/gui/view_dispatcher.c
index 9abf18c7..6d64e064 100644
--- a/applications/gui/view_dispatcher.c
+++ b/applications/gui/view_dispatcher.c
@@ -26,7 +26,7 @@ void view_dispatcher_free(ViewDispatcher* view_dispatcher) {
while(!ViewDict_end_p(it)) {
ViewDict_itref_t* ref = ViewDict_ref(it);
// Crash if view wasn't freed
- furi_assert(ref->value);
+ furi_check(ref->value);
ViewDict_next(it);
}
ViewDict_clear(view_dispatcher->views);