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:
authorits your bedtime <23366927+itsyourbedtime@users.noreply.github.com>2021-08-17 00:53:35 +0300
committerGitHub <noreply@github.com>2021-08-17 00:53:35 +0300
commit1f192c4a48bbf874a8707f38045fe8abb5a0f729 (patch)
tree844d617842f6052ba1e83ec8db86330b86100ceb /applications/applications.c
parentc1223174681f8fa96caee376f502d49886db0355 (diff)
[FL-1675] Dolphin scene and included apps removed #638
Co-authored-by: あく <alleteam@gmail.com>
Diffstat (limited to 'applications/applications.c')
-rw-r--r--applications/applications.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/applications/applications.c b/applications/applications.c
index a36ac486..786b8f35 100644
--- a/applications/applications.c
+++ b/applications/applications.c
@@ -28,9 +28,6 @@ extern int32_t keypad_test_app(void* p);
extern int32_t lfrfid_app(void* p);
extern int32_t lfrfid_debug_app(void* p);
extern int32_t nfc_app(void* p);
-extern int32_t passport_app(void* p);
-extern int32_t food_minigame_app(void* p);
-extern int32_t scene_app(void* p);
extern int32_t scened_app(void* p);
extern int32_t storage_test_app(void* p);
extern int32_t subghz_app(void* p);
@@ -248,19 +245,6 @@ const FlipperApplication FLIPPER_ARCHIVE =
{.app = archive_app, .name = "Archive", .stack_size = 4096, .icon = &A_FileManager_14};
#endif
-#ifdef SRV_DOLPHIN
-const FlipperApplication FLIPPER_SCENE =
- {.app = scene_app, .name = "Scenes", .stack_size = 1024, .icon = &A_Games_14};
-
-const FlipperApplication FLIPPER_SCENE_APPS[] = {
- {.app = passport_app, .name = "Passport", .stack_size = 1024, .icon = &A_Games_14},
- {.app = food_minigame_app, .name = "Food minigame", .stack_size = 1024, .icon = &A_Games_14},
-};
-
-const size_t FLIPPER_SCENE_APPS_COUNT = sizeof(FLIPPER_SCENE_APPS) / sizeof(FlipperApplication);
-
-#endif
-
// Settings menu
const FlipperApplication FLIPPER_SETTINGS_APPS[] = {
#ifdef SRV_NOTIFICATION