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:
authorSG <who.just.the.doctor@gmail.com>2021-07-01 14:33:43 +0300
committerGitHub <noreply@github.com>2021-07-01 14:33:43 +0300
commitb09f68c43d7131065612431bad6b29790bedc529 (patch)
treef1f958d922e2c00b2abe6587eac1d9f694080023 /applications/applications.c
parent8211432685a051f26ec0c979c79dde1fdc5bdf0e (diff)
Removed app floopper-bloopper and font FontGlyph (#549)
* Remove app floopper-bloopper and FontGlyph * Gui: proper viewport allocator declaration Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
Diffstat (limited to 'applications/applications.c')
-rw-r--r--applications/applications.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/applications/applications.c b/applications/applications.c
index 977c4805..6d506a0c 100644
--- a/applications/applications.c
+++ b/applications/applications.c
@@ -27,7 +27,6 @@ int32_t app_ibutton(void* p);
int32_t cli_task(void* p);
int32_t music_player(void* p);
int32_t sdnfc(void* p);
-int32_t floopper_bloopper(void* p);
int32_t sd_filesystem(void* p);
int32_t subghz_app(void* p);
int32_t gui_test(void* p);
@@ -144,10 +143,6 @@ const FlipperApplication FLIPPER_SERVICES[] = {
{.app = app_gpio_test, .name = "gpio test", .stack_size = 1024, .icon = A_Plugins_14},
#endif
-#ifdef SRV_FLOOPPER_BLOOPPER
- {.app = floopper_bloopper, .name = "Floopper Bloopper", .stack_size = 1024, .icon = A_Games_14},
-#endif
-
#ifdef SRV_SDNFC
{.app = sdnfc, .name = "sdnfc", .stack_size = 1024, .icon = A_Plugins_14},
#endif
@@ -239,10 +234,6 @@ const FlipperApplication FLIPPER_PLUGINS[] = {
{.app = music_player, .name = "music player", .stack_size = 1024, .icon = A_Plugins_14},
#endif
-#ifdef APP_FLOOPPER_BLOOPPER
- {.app = floopper_bloopper, .name = "Floopper Bloopper", .stack_size = 1024, .icon = A_Games_14},
-#endif
-
#ifdef APP_SPEAKER_DEMO
{.app = coreglitch_demo_0,
.name = "coreglitch_demo_0",
@@ -326,7 +317,6 @@ const FlipperApplication FLIPPER_SCENE =
const FlipperApplication FLIPPER_SCENE_APPS[] = {
{.app = passport, .name = "Passport", .stack_size = 1024, .icon = A_Games_14},
{.app = music_player, .name = "Music player", .stack_size = 1024, .icon = A_Plugins_14},
- {.app = floopper_bloopper, .name = "Floopper Bloopper", .stack_size = 1024, .icon = A_Games_14},
};
const size_t FLIPPER_SCENE_APPS_COUNT = sizeof(FLIPPER_SCENE_APPS) / sizeof(FlipperApplication);