mirror of
https://github.com/reactos/reactos.git
synced 2025-06-28 18:09:44 +00:00
[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:
parent
00c2cfbe36
commit
0b05db72cf
1 changed files with 10 additions and 2 deletions
|
@ -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 = LlbHwVideoCreateColor(14, 0, 82);
|
||||
/* 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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue