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/applications.h
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/applications.h')
-rw-r--r--applications/applications.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/applications.h b/applications/applications.h
index 45d37bdb..abf38985 100644
--- a/applications/applications.h
+++ b/applications/applications.h
@@ -7,7 +7,7 @@ typedef struct {
const FuriThreadCallback app;
const char* name;
const size_t stack_size;
- const IconName icon;
+ const Icon* icon;
} FlipperApplication;
typedef void (*FlipperOnStartHook)(void);