mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
[BOOTVID]
Rename a global variable to silence a VS analyze warning. svn path=/trunk/; revision=58150
This commit is contained in:
parent
61204b265b
commit
4fffa4fbc6
1 changed files with 4 additions and 4 deletions
|
@ -63,7 +63,7 @@ ULONG lookup[16] =
|
|||
0x1111,
|
||||
};
|
||||
|
||||
ULONG TextColor = 0xF;
|
||||
ULONG VidTextColor = 0xF;
|
||||
ULONG curr_x = 0;
|
||||
ULONG curr_y = 0;
|
||||
BOOLEAN CarriageReturn = FALSE;
|
||||
|
@ -689,8 +689,8 @@ VidSetTextColor(ULONG Color)
|
|||
ULONG OldColor;
|
||||
|
||||
/* Save the old color and set the new one */
|
||||
OldColor = TextColor;
|
||||
TextColor = Color;
|
||||
OldColor = VidTextColor;
|
||||
VidTextColor = Color;
|
||||
return OldColor;
|
||||
}
|
||||
|
||||
|
@ -824,7 +824,7 @@ VidDisplayString(PUCHAR String)
|
|||
}
|
||||
|
||||
/* Display this character */
|
||||
DisplayCharacter(*String, curr_x, curr_y, TextColor, 16);
|
||||
DisplayCharacter(*String, curr_x, curr_y, VidTextColor, 16);
|
||||
curr_x += 8;
|
||||
|
||||
/* Check if we should scroll */
|
||||
|
|
Loading…
Reference in a new issue