[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:
Stanislav Motylkov 2020-10-17 00:46:06 +03:00
parent db1b04340f
commit 8a4273b6ee
No known key found for this signature in database
GPG key ID: AFE513258CBA9E92
10 changed files with 30 additions and 17 deletions

View file

@ -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,