mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 19:26:32 +00:00
[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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user