mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 12:04:51 +00:00
[NTVDM]: Inline a function and fix spelling.
svn path=/trunk/; revision=65429
This commit is contained in:
parent
b868fbf04a
commit
d6985bdb0a
1 changed files with 3 additions and 3 deletions
|
@ -2339,7 +2339,7 @@ VOID VidBiosSyncCursorPosition(VOID)
|
||||||
VidBiosSetCursorPosition(Row, Column, Bda->VideoPage);
|
VidBiosSetCursorPosition(Row, Column, Bda->VideoPage);
|
||||||
}
|
}
|
||||||
|
|
||||||
static BYTE VidBiosGetVideoMode(VOID)
|
static inline BYTE VidBiosGetVideoMode(VOID)
|
||||||
{
|
{
|
||||||
/* Bit 7 of VideoMode is determined by bit 7 of VGAOptions */
|
/* Bit 7 of VideoMode is determined by bit 7 of VGAOptions */
|
||||||
return Bda->VideoMode | (Bda->VGAOptions & 0x80);
|
return Bda->VideoMode | (Bda->VGAOptions & 0x80);
|
||||||
|
@ -3177,12 +3177,12 @@ VOID WINAPI VidBiosVideoService(LPWORD Stack)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Display combination code */
|
/* Get/Set Display combination code */
|
||||||
case 0x1A:
|
case 0x1A:
|
||||||
{
|
{
|
||||||
switch (getAL())
|
switch (getAL())
|
||||||
{
|
{
|
||||||
case 0x00: /* Get Display combiantion code */
|
case 0x00: /* Get Display combination code */
|
||||||
setAX(MAKEWORD(0x1A, 0x1A));
|
setAX(MAKEWORD(0x1A, 0x1A));
|
||||||
setBX(MAKEWORD(0x08, 0x00)); /* VGA w/ color analog display */
|
setBX(MAKEWORD(0x08, 0x00)); /* VGA w/ color analog display */
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue