BdsConsole: use recommended boot logo position

Microsoft user experience specifications recommend the boot logo is drawn 38.2%
from the top of the screen. This is also where operating systems like Fedora
expect the logo to be drawn.

Signed-off-by: James Ye <jye836@gmail.com>
This commit is contained in:
James Ye
2019-05-13 11:40:56 +10:00
parent 51be9d0425
commit 93f8c4a6d5

View File

@@ -862,7 +862,7 @@ EnableQuietBoot (
case EfiBadgingDisplayAttributeCenter:
DestX = (SizeOfX - Width) / 2;
DestY = ((SizeOfY * 2 / 3) - Height) / 2;
DestY = ((SizeOfY * 382) / 1000) - Height / 2;
break;
case EfiBadgingDisplayAttributeCustomized: