mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +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 */
|
/* Take control of the display */
|
||||||
InbvAcquireDisplayOwnership();
|
InbvAcquireDisplayOwnership();
|
||||||
InbvResetDisplay();
|
InbvResetDisplay();
|
||||||
InbvSolidColorFill(0, 0, 639, 479, 6);
|
InbvSolidColorFill(0, 0, 639, 479, 0);
|
||||||
InbvSetTextColor(15);
|
InbvSetTextColor(15);
|
||||||
InbvSetScrollRegion(0, 0, 639, 479);
|
InbvSetScrollRegion(0, 0, 639, 479);
|
||||||
InbvInstallDisplayStringFilter(NULL);
|
InbvInstallDisplayStringFilter(NULL);
|
||||||
|
|
|
@ -1250,8 +1250,8 @@ KdbpInternalEnter()
|
||||||
InbvAcquireDisplayOwnership();
|
InbvAcquireDisplayOwnership();
|
||||||
InbvResetDisplay();
|
InbvResetDisplay();
|
||||||
|
|
||||||
/* Display blue screen */
|
/* Display debugger prompt */
|
||||||
InbvSolidColorFill(0, 0, 639, 479, 6);
|
InbvSolidColorFill(0, 0, 639, 479, 0);
|
||||||
InbvSetTextColor(15);
|
InbvSetTextColor(15);
|
||||||
InbvInstallDisplayStringFilter(NULL);
|
InbvInstallDisplayStringFilter(NULL);
|
||||||
InbvEnableDisplayString(TRUE);
|
InbvEnableDisplayString(TRUE);
|
||||||
|
|
Loading…
Reference in a new issue