From 3aa839f558294786d4701c54790f1ec20be60cd8 Mon Sep 17 00:00:00 2001 From: Joseph Pranevich Date: Sun, 3 Jan 1999 16:16:14 +0000 Subject: [PATCH] Set console video mode when loading DOS app. (Eventually, I want to mimic Windows 9x's behavior by setting the video mode only when non INT 21 calls are used to allow for arbitrary-sized consoles). --- loader/main.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/loader/main.c b/loader/main.c index 002f29d7bfa..0f48ae3850d 100644 --- a/loader/main.c +++ b/loader/main.c @@ -85,6 +85,9 @@ BOOL32 MAIN_MainInit(void) /* registry initialisation */ SHELL_LoadRegistry(); + /* Set up text-mode stuff */ + CONSOLE_ResizeScreen(80, 25); + return TRUE; }