[NTOSKRNL]

- Change screen debug background to black for improved readability as per Johannes' request

svn path=/trunk/; revision=55596
This commit is contained in:
Cameron Gutman 2012-02-14 19:32:56 +00:00
parent 56eadc580a
commit f1886c94fc
2 changed files with 3 additions and 3 deletions

View file

@ -488,7 +488,7 @@ KdpScreenInit(PKD_DISPATCH_TABLE DispatchTable,
/* Take control of the display */
InbvAcquireDisplayOwnership();
InbvResetDisplay();
InbvSolidColorFill(0, 0, 639, 479, 6);
InbvSolidColorFill(0, 0, 639, 479, 0);
InbvSetTextColor(15);
InbvSetScrollRegion(0, 0, 639, 479);
InbvInstallDisplayStringFilter(NULL);

View file

@ -1250,8 +1250,8 @@ KdbpInternalEnter()
InbvAcquireDisplayOwnership();
InbvResetDisplay();
/* Display blue screen */
InbvSolidColorFill(0, 0, 639, 479, 6);
/* Display debugger prompt */
InbvSolidColorFill(0, 0, 639, 479, 0);
InbvSetTextColor(15);
InbvInstallDisplayStringFilter(NULL);
InbvEnableDisplayString(TRUE);