mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
- Fail HwFindAdapter if VESA is disabled
- This should allow VGA to take over but it doesn't work due to a bug in videoprt svn path=/trunk/; revision=45855
This commit is contained in:
parent
ea385f2fe4
commit
858705878a
1 changed files with 3 additions and 0 deletions
|
@ -71,6 +71,9 @@ VBEFindAdapter(
|
|||
IN OUT PVIDEO_PORT_CONFIG_INFO ConfigInfo,
|
||||
OUT PUCHAR Again)
|
||||
{
|
||||
if (VideoPortIsNoVesa())
|
||||
return ERROR_DEV_NOT_EXIST;
|
||||
|
||||
return NO_ERROR;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue