From a4d5cbf16318d50e7b5846bc3603dcccd480a4eb Mon Sep 17 00:00:00 2001 From: asava Date: Sat, 30 May 2020 21:03:19 +0300 Subject: [PATCH] Correct a case where removing -v via options was not fully respected, when it was present by default --- rEFIt_UEFI/entry_scan/loader.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rEFIt_UEFI/entry_scan/loader.cpp b/rEFIt_UEFI/entry_scan/loader.cpp index e7b302f51..814393fc0 100644 --- a/rEFIt_UEFI/entry_scan/loader.cpp +++ b/rEFIt_UEFI/entry_scan/loader.cpp @@ -621,10 +621,12 @@ STATIC LOADER_ENTRY *CreateLoaderEntry(IN CONST XStringW& LoaderPath, case OSTYPE_OSX_INSTALLER: OSIconName = GetOSIconName(Entry->OSVersion);// Sothor - Get OSIcon name using OSVersion // apianti - force custom logo even when verbose +/* this is not needed, as this flag is also being unset when booting if -v is present (LoadOptions may change until then) if ( Entry->LoadOptions.containsIC("-v") ) { // OSX is not booting verbose, so we can set console to graphics mode Entry->Flags = OSFLAG_UNSET(Entry->Flags, OSFLAG_USEGRAPHICS); } +*/ if (OSType == OSTYPE_OSX && IsOsxHibernated(Entry)) { Entry->Flags = OSFLAG_SET(Entry->Flags, OSFLAG_HIBERNATED); DBG(" =>set entry as hibernated\n");