mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 13:21:39 +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,
|
0x1111,
|
||||||
};
|
};
|
||||||
|
|
||||||
ULONG TextColor = 0xF;
|
ULONG VidTextColor = 0xF;
|
||||||
ULONG curr_x = 0;
|
ULONG curr_x = 0;
|
||||||
ULONG curr_y = 0;
|
ULONG curr_y = 0;
|
||||||
BOOLEAN CarriageReturn = FALSE;
|
BOOLEAN CarriageReturn = FALSE;
|
||||||
|
@ -689,8 +689,8 @@ VidSetTextColor(ULONG Color)
|
||||||
ULONG OldColor;
|
ULONG OldColor;
|
||||||
|
|
||||||
/* Save the old color and set the new one */
|
/* Save the old color and set the new one */
|
||||||
OldColor = TextColor;
|
OldColor = VidTextColor;
|
||||||
TextColor = Color;
|
VidTextColor = Color;
|
||||||
return OldColor;
|
return OldColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -824,7 +824,7 @@ VidDisplayString(PUCHAR String)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Display this character */
|
/* Display this character */
|
||||||
DisplayCharacter(*String, curr_x, curr_y, TextColor, 16);
|
DisplayCharacter(*String, curr_x, curr_y, VidTextColor, 16);
|
||||||
curr_x += 8;
|
curr_x += 8;
|
||||||
|
|
||||||
/* Check if we should scroll */
|
/* Check if we should scroll */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue