[ARMLLB]: Although the soothing BSOD blue color is nice for LLB debugging, we'd really prefer to have black so it looks more natural on the eyes when booting to FreeLoader. As such, make the default backcolor black, but keep the old blue color for early testing, if enabled with a define.

svn path=/trunk/; revision=49742
This commit is contained in:
Sir Richard 2010-11-23 16:50:35 +00:00
parent 00c2cfbe36
commit 0b05db72cf

View file

@ -326,7 +326,11 @@ LlbVideoClearScreen(IN BOOLEAN OsLoader)
else
{
/* Deep blue */
#ifdef BLUE_SCREEN
BackColor = LlbHwVideoCreateColor(14, 0, 82);
#else
BackColor = LlbHwVideoCreateColor(0, 0, 0);
#endif
BackColor = (BackColor << 16) | BackColor;
}
@ -346,8 +350,12 @@ LlbVideoPutChar(IN UCHAR c)
{
ULONG cx, cy, CharsPerLine, BackColor, ScreenWidth;
/* Forecolor on this machine */
/* Backcolor on this machine */
#ifdef BLUE_SCREEN
BackColor = LlbHwVideoCreateColor(14, 0, 82);
#else
BackColor = LlbHwVideoCreateColor(0, 0, 0);
#endif
/* Amount of characters in a line */
ScreenWidth = LlbHwGetScreenWidth();