mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 01:15:09 +00:00
[NTOSKRNL]
- Change screen debug background to black for improved readability as per Johannes' request svn path=/trunk/; revision=55596
This commit is contained in:
parent
56eadc580a
commit
f1886c94fc
2 changed files with 3 additions and 3 deletions
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue