From a66456979a882e35fedfb3236352b8da954bf959 Mon Sep 17 00:00:00 2001 From: Rafal Kupiec Date: Sun, 3 Dec 2023 16:09:05 +0100 Subject: [PATCH] Refactor part 2 --- xtldr2/xtldr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xtldr2/xtldr.c b/xtldr2/xtldr.c index 9075a47..8a6bb3f 100644 --- a/xtldr2/xtldr.c +++ b/xtldr2/xtldr.c @@ -34,8 +34,8 @@ BlStartXtLoader(IN EFI_HANDLE ImageHandle, EfiSystemTable = SystemTable; /* Initialize UEFI console and early print XTLDR version */ - BmInitializeConsole(); - BmPrint(L"XTLDR boot loader v%s\n", XTOS_VERSION); + BlConsoleInitialize(); + BlConsolePrint(L"XTLDR boot loader v%s\n", XTOS_VERSION); /* Temporary infinite loop */ for(;;);