vbe: Force bpp to 32 when trying EDID else it will never work

This commit is contained in:
mintsuki 2021-03-20 12:03:57 +01:00
parent 984986a64d
commit 2dc49ee73b
1 changed files with 1 additions and 0 deletions

View File

@ -149,6 +149,7 @@ bool init_vbe(struct fb_info *ret,
if (edid_width && edid_height) {
target_width = edid_width;
target_height = edid_height;
target_bpp = 32;
print("vbe: EDID detected screen resolution of %ux%u\n",
target_width, target_height);
}