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
|
@ -85,6 +85,9 @@ BOOL32 MAIN_MainInit(void)
|
||||||
/* registry initialisation */
|
/* registry initialisation */
|
||||||
SHELL_LoadRegistry();
|
SHELL_LoadRegistry();
|
||||||
|
|
||||||
|
/* Set up text-mode stuff */
|
||||||
|
CONSOLE_ResizeScreen(80, 25);
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue