diff --git a/app/main.c b/app/main.c index 8f9a9e1..b4301ae 100644 --- a/app/main.c +++ b/app/main.c @@ -43,7 +43,7 @@ #include "ui/ui.h" #include -void toggle_chan_scanlist(void) +static void toggle_chan_scanlist(void) { // toggle the selected channels scanlist setting if (SCANNER_IsScanning()) @@ -258,13 +258,11 @@ static void processFKeyFunction(const KEY_Code_t Key, const bool beep) case KEY_UP: gEeprom.SQUELCH_LEVEL = (gEeprom.SQUELCH_LEVEL < 9) ? gEeprom.SQUELCH_LEVEL + 1: 9; gVfoConfigureMode = VFO_CONFIGURE; - //gRequestDisplayScreen = DISPLAY_MAIN; gWasFKeyPressed = false; break; case KEY_DOWN: gEeprom.SQUELCH_LEVEL = (gEeprom.SQUELCH_LEVEL > 0) ? gEeprom.SQUELCH_LEVEL - 1: 0; gVfoConfigureMode = VFO_CONFIGURE; - //gRequestDisplayScreen = DISPLAY_MAIN; gWasFKeyPressed = false; break; diff --git a/app/menu.c b/app/menu.c index a5aef0f..c1f0641 100644 --- a/app/menu.c +++ b/app/menu.c @@ -436,7 +436,6 @@ void MENU_AcceptSetting(void) if (IS_FREQ_CHANNEL(gTxVfo->CHANNEL_SAVE)) { gRequestSaveChannel = 1; - return; } return;