diff --git a/src/ui_text.c b/src/ui_text.c index 0818949..efc979a 100644 --- a/src/ui_text.c +++ b/src/ui_text.c @@ -230,10 +230,10 @@ static inline void ncurses_draw_lcd_fullsize( void ) static inline void ncurses_draw_lcd( void ) { - if ( config.small ) - ncurses_draw_lcd_small(); - else if ( config.tiny ) + if ( config.tiny ) ncurses_draw_lcd_tiny(); + else if ( config.small ) + ncurses_draw_lcd_small(); else ncurses_draw_lcd_fullsize(); }