diff --git a/Makefile b/Makefile index b10bd77..c85e717 100644 --- a/Makefile +++ b/Makefile @@ -206,7 +206,7 @@ ifeq ($(ENABLE_FEAT_F4HWN),1) VERSION_STRING_1 ?= v0.22 AUTHOR_STRING_2 ?= F4HWN - VERSION_STRING_2 ?= v1.8 + VERSION_STRING_2 ?= v1.9 AUTHOR_STRING ?= $(AUTHOR_STRING_1)+$(AUTHOR_STRING_2) VERSION_STRING ?= $(VERSION_STRING_2) diff --git a/ui/main.c b/ui/main.c index ba22074..e840c05 100644 --- a/ui/main.c +++ b/ui/main.c @@ -363,18 +363,16 @@ void DisplayRSSIBar(const bool now) #endif #ifdef ENABLE_FEAT_F4HWN + sprintf(str, "% 4d", -rssi_dBm); + UI_PrintStringSmallNormal(str, LCD_WIDTH + 8, 0, line - 1); + if(overS9Bars == 0) { - sprintf(str, "% 4d", -rssi_dBm); - UI_PrintStringSmallNormal(str, LCD_WIDTH + 8, 0, line - 1); sprintf(str, "S%d", s_level); - UI_PrintStringSmallBold(str, LCD_WIDTH + 38, 0, line - 1); } else { - sprintf(str, "% 4d", -rssi_dBm); - UI_PrintStringSmallNormal(str, LCD_WIDTH + 8, 0, line - 1); sprintf(str, "+%02d", overS9dBm); - UI_PrintStringSmallBold(str, LCD_WIDTH + 38, 0, line - 1); } + UI_PrintStringSmallBold(str, LCD_WIDTH + 38, 0, line - 1); #else if(overS9Bars == 0) { sprintf(str, "% 4d S%d", -rssi_dBm, s_level);