Skip to content

Commit

Permalink
nuke and cleanup IV
Browse files Browse the repository at this point in the history
  • Loading branch information
PixlEmly committed Jun 16, 2022
1 parent 8aa2f0d commit a506b19
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions applications/applications.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,6 @@ extern int32_t music_player_app(void* p);
extern int32_t snake_game_app(void* p);
extern int32_t tetris_game_app(void *p);
extern int32_t clock_app(void *p);
//extern int32_t box_mover_app(void* p);
extern int32_t video_poker_app(void* p);
// extern int32_t floopper_bloopper(void* p);
extern int32_t raycast_game_app(void* p);
extern int32_t spectrum_analyzer_app(void* p);
Expand Down Expand Up @@ -360,7 +358,6 @@ const FlipperApplication FLIPPER_GAMES[] = {
.flags = FlipperApplicationFlagDefault},
#endif


#ifdef APP_VIDEO_POKER
{.app = video_poker_app,
.name = "Video Poker",
Expand All @@ -369,14 +366,6 @@ const FlipperApplication FLIPPER_GAMES[] = {
.flags =FlipperApplicationFlagDefault},
#endif

#ifdef APP_ZOMBIEZ
{.app = zombiez_app,
.name = "Zombiez",
.stack_size = 2048,
.icon = &A_Plugins_14,
.flags = FlipperApplicationFlagDefault},
#endif

};

const size_t FLIPPER_GAMES_COUNT = COUNT_OF(FLIPPER_GAMES);
Expand Down Expand Up @@ -689,4 +678,4 @@ const FlipperApplication FLIPPER_SETTINGS_APPS[] = {
#endif
};

const size_t FLIPPER_SETTINGS_APPS_COUNT = COUNT_OF(FLIPPER_SETTINGS_APPS);
const size_t FLIPPER_SETTINGS_APPS_COUNT = COUNT_OF(FLIPPER_SETTINGS_APPS);

0 comments on commit a506b19

Please sign in to comment.