From: Cameron Gutman Date: Wed, 5 May 2010 23:16:17 +0000 (+0000) Subject: [VIDEOPRT] X-Git-Tag: backups/header-work@57446~16^2~139 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=a9e356ef1d8cd1fcbaa86ac5b125d59add73c128 [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 --- diff --git a/reactos/drivers/video/videoprt/videoprt.c b/reactos/drivers/video/videoprt/videoprt.c index 33c6fedc7f8..ad22d6a36fb 100644 --- a/reactos/drivers/video/videoprt/videoprt.c +++ b/reactos/drivers/video/videoprt/videoprt.c @@ -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);