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).
This commit is contained in:
Joseph Pranevich 1999-01-03 16:16:14 +00:00 committed by Alexandre Julliard
parent bef93c04fe
commit 3aa839f558
1 changed files with 3 additions and 0 deletions

View File

@ -85,6 +85,9 @@ BOOL32 MAIN_MainInit(void)
/* registry initialisation */
SHELL_LoadRegistry();
/* Set up text-mode stuff */
CONSOLE_ResizeScreen(80, 25);
return TRUE;
}