[VIDEOPRT]

- Also check for the BASEVIDEO option set and return true in that case also
- Fixes a bug with boot time (F8) options on my WC

svn path=/trunk/; revision=47109
This commit is contained in:
Cameron Gutman 2010-05-05 23:16:17 +00:00
parent 8481a4f1b9
commit a9e356ef1d

View file

@ -1523,8 +1523,9 @@ VideoPortIsNoVesa(VOID)
return FALSE;
}
/* Check if NOVESA is present in the start options */
if (wcsstr((PWCHAR)KeyInfo->Data, L"NOVESA"))
/* Check if NOVESA or BASEVIDEO is present in the start options */
if (wcsstr((PWCHAR)KeyInfo->Data, L"NOVESA") ||
wcsstr((PWCHAR)KeyInfo->Data, L"BASEVIDEO"))
{
VideoPortDebugPrint(Info, "VESA mode disabled\n");
ExFreePool(KeyInfo);