term: Force terminal cols/rows to 80x24 for fallback on UEFI
diff --git a/common/lib/term.c b/common/lib/term.c
index 696f2136..b8e37474 100644
--- a/common/lib/term.c
+++ b/common/lib/term.c
@@ -260,7 +260,7 @@ void term_fallback(void) {
term->get_cursor_pos = fallback_get_cursor_pos;
term->scroll = fallback_scroll;
term->cols = 80;
- term->rows = 25;
+ term->rows = 24;
term_backend = FALLBACK;
flanterm_context_reinit(term);
#if defined (UEFI)
