That should be <width>,<height>,<bpp> not <hight>,<width>,<bpp>.
Also 480 not 680.
Casper
_____
From: ros-diffs-bounces@reactos.org [mailto:ros-diffs-bounces@reactos.org] On Behalf Of mbosma@svn.reactos.com Sent: 23. december 2005 19:03 To: ros-diffs@reactos.com Subject: [ros-diffs] [mbosma] 20313: Allow to choose between 800x600x16 and640x480x8 as default resolution in first stage installer.
Allow to choose between 800x600x16 and 640x480x8 as default resolution in first stage installer. Modified: trunk/reactos/bootdata/txtsetup.sif Modified: trunk/reactos/subsys/system/usetup/settings.c _____
Modified: trunk/reactos/bootdata/txtsetup.sif
--- trunk/reactos/bootdata/txtsetup.sif 2005-12-23 17:46:17 UTC (rev 20312) +++ trunk/reactos/bootdata/txtsetup.sif 2005-12-23 18:03:12 UTC (rev 20313) @@ -66,9 +66,10 @@ halmp.dll = 2,hal.dll
[Display] -;<id> = <user friendly name>,<spare>,<service key name> -vga = "VGA Display",,Vga -vbe = "VESA Display",,VBE +;<id> = <user friendly name>,<spare>,<service key name>,<hight>,<width>,<bpp> +vga = "VGA Display (640x680x8)",,Vga,640,480,8 +vbe_lowres = "VESA Display (640x680x8)",,VBE,640,480,8 +vbe = "VESA Display (800x600x16)",,VBE,800,600,16
[Map.Display] ;<id> = <pnp id string> _____