mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
[BLUE] Initialize the console with a default font for codepage 437.
This commit is contained in:
parent
aad4096475
commit
306bcd9d73
1 changed files with 4 additions and 1 deletions
|
@ -211,6 +211,9 @@ ScrAcquireOwnership(PDEVICE_EXTENSION DeviceExtension)
|
||||||
DeviceExtension->Rows = 30;
|
DeviceExtension->Rows = 30;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* Upload a default font for the default codepage 437 */
|
||||||
|
ScrLoadFontTable(437);
|
||||||
|
|
||||||
DPRINT ("%d Columns %d Rows %d Scanlines\n",
|
DPRINT ("%d Columns %d Rows %d Scanlines\n",
|
||||||
DeviceExtension->Columns,
|
DeviceExtension->Columns,
|
||||||
DeviceExtension->Rows,
|
DeviceExtension->Rows,
|
||||||
|
@ -864,7 +867,7 @@ ScrIoControl(PDEVICE_OBJECT DeviceObject,
|
||||||
|
|
||||||
if (!InbvCheckDisplayOwnership())
|
if (!InbvCheckDisplayOwnership())
|
||||||
{
|
{
|
||||||
// Upload a font for the codepage if needed
|
/* Upload a font for the codepage if needed */
|
||||||
ScrLoadFontTable(CodePage);
|
ScrLoadFontTable(CodePage);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue