mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 13:27:35 +00:00
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:
parent
bef93c04fe
commit
3aa839f558
1 changed files with 3 additions and 0 deletions
|
@ -85,6 +85,9 @@ BOOL32 MAIN_MainInit(void)
|
|||
/* registry initialisation */
|
||||
SHELL_LoadRegistry();
|
||||
|
||||
/* Set up text-mode stuff */
|
||||
CONSOLE_ResizeScreen(80, 25);
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue