From c9357b3c7ef30d5aa0fe3552951c30ee1ed55e33 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Fri, 20 Apr 2018 13:31:02 +0100 Subject: [PATCH] ubee: set display to 80x25 --- Kernel/platform-ubee/config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Kernel/platform-ubee/config.h b/Kernel/platform-ubee/config.h index a6983fef..773050b9 100644 --- a/Kernel/platform-ubee/config.h +++ b/Kernel/platform-ubee/config.h @@ -26,9 +26,9 @@ /* For now we don't support resizing */ #define VT_WIDTH 80 -#define VT_HEIGHT 24 +#define VT_HEIGHT 25 #define VT_RIGHT 79 -#define VT_BOTTOM 23 +#define VT_BOTTOM 24 #define TICKSPERSEC 10 /* Ticks per second */ #define PROGBASE 0x0000 /* Base of user */ -- 2.34.1