X-Git-Url: https://code.delx.au/refind/blobdiff_plain/85f3218b8717046ea8516e17a51f66a979c8b0c4..e0f6b77e5692ec112bb803202ae27f8c5d55de50:/refind/menu.c diff --git a/refind/menu.c b/refind/menu.c index 423e8ed..5f76da4 100644 --- a/refind/menu.c +++ b/refind/menu.c @@ -923,7 +923,7 @@ VOID MainMenuStyle(IN REFIT_MENU_SCREEN *Screen, IN SCROLL_STATE *State, IN UINT static BOOLEAN EditOptions(LOADER_ENTRY *MenuEntry) { UINTN x_max, y_max; CHAR16 *EditedOptions; - CHAR16 message[] = L"Use cursor keys to edit, Esc to exit, Enter to boot with edited options"; +// CHAR16 message[] = L"Use cursor keys to edit, Esc to exit, Enter to boot with edited options"; EG_PIXEL DarkBackgroundPixel = { 0x0, 0x0, 0x0, 0 }; BOOLEAN retval = FALSE; @@ -935,7 +935,9 @@ static BOOLEAN EditOptions(LOADER_ENTRY *MenuEntry) { egClearScreen(&DarkBackgroundPixel); refit_call3_wrapper(ST->ConOut->SetCursorPosition, ST->ConOut, 0, y_max - 1); - refit_call2_wrapper(ST->ConOut->OutputString, ST->ConOut, message); +// refit_call2_wrapper(ST->ConOut->OutputString, ST->ConOut, message); + refit_call2_wrapper(ST->ConOut->OutputString, ST->ConOut, + L"Use cursor keys to edit, Esc to exit, Enter to boot with edited options"); if (line_edit(MenuEntry->LoadOptions, &EditedOptions, x_max, 1)) { MyFreePool(MenuEntry->LoadOptions);