From 1790f5e654ff20e61d8d83f16773dc0ef3f7da01 Mon Sep 17 00:00:00 2001 From: Toomas Soome Date: Thu, 7 Jan 2021 09:07:59 +0200 Subject: [PATCH] loader: do not update palette in text mode Apparently palette update while in text mode, will cause some adapters to end up with blank display. --- stand/i386/libi386/vidconsole.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stand/i386/libi386/vidconsole.c b/stand/i386/libi386/vidconsole.c index a965c1d2e4f2..47150b3dd09f 100644 --- a/stand/i386/libi386/vidconsole.c +++ b/stand/i386/libi386/vidconsole.c @@ -936,7 +936,7 @@ cons_update_mode(bool use_gfx_mode) gfx_state.tg_fb.fb_mask_green >> goff, goff, gfx_state.tg_fb.fb_mask_blue >> boff, boff); - if (gfx_state.tg_ctype == CT_INDEXED) + if (gfx_state.tg_ctype == CT_INDEXED && !use_gfx_mode) vidc_load_palette(); teken_set_winsize(&gfx_state.tg_teken, &gfx_state.tg_tp);