mirror of
https://github.com/reactos/reactos.git
synced 2025-01-04 21:38:43 +00:00
[VBEMP]
- Promote fatal VESA BIOS errors to Error status svn path=/trunk/; revision=56261
This commit is contained in:
parent
efff43afd5
commit
a13075fb0e
1 changed files with 5 additions and 3 deletions
|
@ -250,7 +250,7 @@ VBEInitialize(PVOID HwDeviceExtension)
|
|||
/* Verify the VBE signature. */
|
||||
if (VideoPortCompareMemory(VBEDeviceExtension->VbeInfo.Signature, "VESA", 4) != 4)
|
||||
{
|
||||
VideoPortDebugPrint(Warn, "No VBE BIOS present\n");
|
||||
VideoPortDebugPrint(Error, "No VBE BIOS present\n");
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
@ -265,13 +265,15 @@ VBEInitialize(PVOID HwDeviceExtension)
|
|||
if (VBEDeviceExtension->VbeInfo.Version < 0x200)
|
||||
#endif
|
||||
{
|
||||
VideoPortDebugPrint(Warn, "VBE BIOS present, but incompatible version.\n");
|
||||
VideoPortDebugPrint(Error, "VBE BIOS present, but incompatible version %d.%d\n",
|
||||
VBEDeviceExtension->VbeInfo.Version / 0x100,
|
||||
VBEDeviceExtension->VbeInfo.Version & 0xFF);
|
||||
return FALSE;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
VideoPortDebugPrint(Warn, "No VBE BIOS found.\n");
|
||||
VideoPortDebugPrint(Error, "No VBE BIOS found.\n");
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue