From 44cbf1a27c4d4ca88eb39dfb3728a5206d97d931 Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Tue, 2 Oct 2018 21:07:57 +0200 Subject: [PATCH] small code cleanup --- src/screens.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/screens.c b/src/screens.c index 14bcc409..127333bc 100644 --- a/src/screens.c +++ b/src/screens.c @@ -6489,10 +6489,12 @@ static void drawSetupValue(int screen_pos, int setup_info_pos_raw) int ypos = MENU_SCREEN_START_YPOS + screen_pos; int startx = mSX + xpos * 32; int starty = mSY + ypos * 32; - int font_nr, font_nr_default, font_width_default; int type = si->type; void *value = si->value; char *value_string = getSetupValue(type, value); + int font_nr_default = getSetupValueFont(type, value); + int font_width_default = getFontWidth(font_nr_default); + int font_nr = font_nr_default; int i; if (value_string == NULL) @@ -6527,10 +6529,6 @@ static void drawSetupValue(int screen_pos, int setup_info_pos_raw) startx = mSX + xpos * 32; starty = mSY + ypos * 32; - font_nr_default = getSetupValueFont(type, value); - font_width_default = getFontWidth(font_nr_default); - - font_nr = font_nr_default; // special check if right-side setup values moved left due to scrollbar if (scrollbar_needed && xpos > MENU_SCREEN_START_XPOS) -- 2.34.1