Author: greatlrd
Date: Fri Dec 10 13:42:03 2010
New Revision: 50004
URL:
http://svn.reactos.org/svn/reactos?rev=50004&view=rev
Log:
vbe drv now accpect any linear video mode with res 300x200 or higher
Modified:
branches/reactx/reactos/drivers/video/miniport/vbe/vbemp.c
Modified: branches/reactx/reactos/drivers/video/miniport/vbe/vbemp.c
URL:
http://svn.reactos.org/svn/reactos/branches/reactx/reactos/drivers/video/mi…
==============================================================================
--- branches/reactx/reactos/drivers/video/miniport/vbe/vbemp.c [iso-8859-1] (original)
+++ branches/reactx/reactos/drivers/video/miniport/vbe/vbemp.c [iso-8859-1] Fri Dec 10
13:42:03 2010
@@ -350,8 +350,8 @@
/* Is this mode acceptable? */
if (VBE_GETRETURNCODE(BiosRegisters.Eax) == VBE_SUCCESS &&
- VbeModeInfo->XResolution >= 640 &&
- VbeModeInfo->YResolution >= 480 &&
+ VbeModeInfo->XResolution >= 300 &&
+ VbeModeInfo->YResolution >= 200 &&
(VbeModeInfo->MemoryModel == VBE_MEMORYMODEL_PACKEDPIXEL ||
VbeModeInfo->MemoryModel == VBE_MEMORYMODEL_DIRECTCOLOR) &&
VbeModeInfo->PhysBasePtr != 0)