Skip to content

Commit

Permalink
Remove redudant symbol
Browse files Browse the repository at this point in the history
  • Loading branch information
JuantAldea committed Dec 8, 2023
1 parent 0793b68 commit 4fd1ab8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
4 changes: 1 addition & 3 deletions app/action.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,7 @@ void ACTION_Scan(bool bRestart);
#ifdef ENABLE_VOX
void ACTION_Vox(void);
#endif
#ifdef ENABLE_ALARM
//static void ACTION_AlarmOr1750(bool b1750)
#endif

#ifdef ENABLE_FMRADIO
void ACTION_FM(void);
#endif
Expand Down
6 changes: 3 additions & 3 deletions ui/menu.c
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ const char gSubMenu_SCRAMBLER[][7] =
"3500Hz"
};

const t_sidefunction SIDEFUNCTIONS[] =
const t_sidefunction gSubMenu_SIDEFUNCTIONS[] =
{
{"NONE", ACTION_OPT_NONE},
#ifdef ENABLE_FLASHLIGHT
Expand Down Expand Up @@ -363,8 +363,8 @@ const t_sidefunction SIDEFUNCTIONS[] =
{"BLMIN\nTMP OFF", ACTION_OPT_BLMIN_TMP_OFF}, //BackLight Minimum Temporay OFF
#endif
};
const t_sidefunction* gSubMenu_SIDEFUNCTIONS = SIDEFUNCTIONS;
const uint8_t gSubMenu_SIDEFUNCTIONS_size = ARRAY_SIZE(SIDEFUNCTIONS);

const uint8_t gSubMenu_SIDEFUNCTIONS_size = ARRAY_SIZE(gSubMenu_SIDEFUNCTIONS);

bool gIsInSubMenu;
uint8_t gMenuCursor;
Expand Down
2 changes: 1 addition & 1 deletion ui/menu.h
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ extern const char gSubMenu_SCRAMBLER[11][7];

typedef struct {char* name; uint8_t id;} t_sidefunction;
extern const uint8_t gSubMenu_SIDEFUNCTIONS_size;
extern const t_sidefunction* gSubMenu_SIDEFUNCTIONS;
extern const t_sidefunction gSubMenu_SIDEFUNCTIONS[];

extern bool gIsInSubMenu;

Expand Down

0 comments on commit 4fd1ab8

Please sign in to comment.