UefiPayloadPkg/PlatformBootManagerLib: Evenly space boot prompt

Add 4 spaces before the boot prompt "F2 or Down..." so that the
spacing is equadistant from the top, which is spaced with a `\n`,
and the left.

Cc: Guo Dong <guo.dong@intel.com>
Cc: Ray Ni <ray.ni@intel.com>
Cc: Maurice Ma <maurice.ma@intel.com>
Cc: Benjamin You <benjamin.you@intel.com>
Signed-off-by: Sean Rhodes <sean@starlabs.systems>
Reviewed-by: Guo Dong <guo.dong@intel.com>
This commit is contained in:
Sean Rhodes 2022-07-04 12:39:15 -07:00 committed by mergify[bot]
parent 0d23c447d6
commit 07c8e5e59b
1 changed files with 4 additions and 4 deletions

View File

@ -263,15 +263,15 @@ PlatformBootManagerAfterConsole (
if (FixedPcdGetBool (PcdBootManagerEscape)) {
Print (
L"\n"
L"Esc or Down to enter Boot Manager Menu.\n"
L"ENTER to boot directly.\n"
L" Esc or Down to enter Boot Manager Menu.\n"
L" ENTER to boot directly.\n"
L"\n"
);
} else {
Print (
L"\n"
L"F2 or Down to enter Boot Manager Menu.\n"
L"ENTER to boot directly.\n"
L" F2 or Down to enter Boot Manager Menu.\n"
L" ENTER to boot directly.\n"
L"\n"
);
}