PlatformBootManagerLib: clear screen after progress

This commit is contained in:
BigfootACA 2022-01-31 03:47:11 +08:00
parent 22d6f75dff
commit 7e3fff8cfb

View File

@ -714,6 +714,12 @@ VOID EFIAPI PlatformBootManagerWaitCallback(UINT16 TimeoutRemain)
Timeout = PcdGet16(PcdPlatformBootTimeOut);
if (Timeout != 0 && TimeoutRemain <= 0) {
gST->ConOut->ClearScreen(gST->ConOut);
BootLogoEnableLogo ();
return;
}
Black.Raw = 0x00000000;
White.Raw = 0x00FFFFFF;