mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 04:26:32 +00:00
[WIN32SS:ENG] Only accept VGASave service (ie vga.sys driver) as the real VGA device
CORE-19796
This commit is contained in:
parent
b4e781d72d
commit
42914af218
1 changed files with 3 additions and 3 deletions
|
@ -94,8 +94,8 @@ EngpHasVgaDriver(
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
/* Device is using VGA driver if service name starts with 'VGA' (case insensitive) */
|
||||
return (_wcsnicmp(awcServiceName, L"VGA", 3) == 0);
|
||||
/* Device is using VGA driver if service name is 'VGASave' (case insensitive) */
|
||||
return (_wcsicmp(awcServiceName, L"VGASave") == 0);
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -242,7 +242,7 @@ EngpUpdateGraphicsDeviceList(VOID)
|
|||
if (pGraphicsDevice->StateFlags & DISPLAY_DEVICE_VGA_COMPATIBLE)
|
||||
{
|
||||
/* Save this as the VGA adapter */
|
||||
if (!gpVgaGraphicsDevice)
|
||||
if (!gpVgaGraphicsDevice || !EngpHasVgaDriver(gpVgaGraphicsDevice))
|
||||
{
|
||||
gpVgaGraphicsDevice = pGraphicsDevice;
|
||||
TRACE("gpVgaGraphicsDevice = %p\n", gpVgaGraphicsDevice);
|
||||
|
|
Loading…
Reference in a new issue