* video/i386/pc/vbe.c (grub_vbe_set_video_mode): In indexed
color modes, allow greater than 16 colors to be configured as
a default palette.
+2005-09-18 Vesa Jaaskelainen <chaac@nic.fi>
+
+ * video/i386/pc/vbe.c (grub_vbe_set_video_mode): In indexed
+ color modes, allow greater than 16 colors to be configured as
+ a default palette.
+
2005-09-03 Yoshinori K. Okuji <okuji@enbug.org>
* normal/completion.c (complete_arguments): Add the qualifier
/* Make sure that the BIOS can reach the palette. */
grub_memcpy (palette, vga_colors, sizeof (vga_colors));
- status = grub_vbe_set_palette_data (16, 0, palette);
+ status = grub_vbe_set_palette_data (sizeof (vga_colors)
+ / sizeof (struct grub_vbe_palette_data),
+ 0,
+ palette);
/* For now, ignore the status. Not sure if this is fatal. */
#if 0