:: commit bc0b61c4e0a62650b7765d22b20418df546b9f37

mintsuki <mintsuki@protonmail.com> — 2024-02-08 08:57

parents: c0fd295cf4

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)
tab: 248 wrap: offon