mirror of
https://github.com/reactos/reactos.git
synced 2025-08-08 23:33:42 +00:00
[FREELDR] Add variable for default text color
On PC/AT-compatible machines it's Gray, and on NEC PC-98 series it's White.
This commit is contained in:
parent
db1b04340f
commit
8a4273b6ee
10 changed files with 30 additions and 17 deletions
|
@ -277,7 +277,7 @@ CreateCommonFreeLdrSections(
|
|||
|
||||
/* MenuTextColor=White */
|
||||
IniCacheInsertKey(IniSection, NULL, INSERT_LAST,
|
||||
L"MenuTextColor", L"Gray");
|
||||
L"MenuTextColor", L"Default");
|
||||
|
||||
/* MenuColor=Blue */
|
||||
IniCacheInsertKey(IniSection, NULL, INSERT_LAST,
|
||||
|
@ -285,15 +285,15 @@ CreateCommonFreeLdrSections(
|
|||
|
||||
/* TextColor=Yellow */
|
||||
IniCacheInsertKey(IniSection, NULL, INSERT_LAST,
|
||||
L"TextColor", L"Gray");
|
||||
L"TextColor", L"Default");
|
||||
|
||||
/* SelectedTextColor=Black */
|
||||
IniCacheInsertKey(IniSection, NULL, INSERT_LAST,
|
||||
L"SelectedTextColor", L"Black");
|
||||
|
||||
/* SelectedColor=Gray */
|
||||
/* SelectedColor=Default */
|
||||
IniCacheInsertKey(IniSection, NULL, INSERT_LAST,
|
||||
L"SelectedColor", L"Gray");
|
||||
L"SelectedColor", L"Default");
|
||||
|
||||
/* ShowTime=Yes */
|
||||
IniCacheInsertKey(IniSection, NULL, INSERT_LAST,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue