From 0974bfa3a8da2201b0a415e72593552f5ac59379 Mon Sep 17 00:00:00 2001 From: Toomas Soome Date: Fri, 15 Jan 2021 14:58:12 +0200 Subject: [PATCH] loader: do not update palette in text mode (real fix) Apparently palette update while in text mode, will cause some adapters to end up with blank display. Previous update had condition reversed. --- 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 b42a476ef85e..e17885cb7b0c 100644 --- a/stand/i386/libi386/vidconsole.c +++ b/stand/i386/libi386/vidconsole.c @@ -939,7 +939,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 && !use_gfx_mode) + if (gfx_state.tg_ctype == CT_INDEXED && use_gfx_mode) vidc_load_palette(); teken_set_winsize(&gfx_state.tg_teken, &gfx_state.tg_tp);