From 99227672a841de10050c6283306ab2c55f90d0ce Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Mon, 9 Jul 2018 00:08:35 +0100 Subject: [PATCH] trs80m1: correct some graphics reporting --- Kernel/platform-trs80m1/devgfx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Kernel/platform-trs80m1/devgfx.c b/Kernel/platform-trs80m1/devgfx.c index 49afc26f..bbc23c83 100644 --- a/Kernel/platform-trs80m1/devgfx.c +++ b/Kernel/platform-trs80m1/devgfx.c @@ -83,7 +83,7 @@ static struct display trsdisplay[6] = { 255, 255, FMT_VDP, HW_VDP_9918A, - GFX_MAPPABLE, /* We don't support it as a console yet */ + GFX_MULTIMODE|GFX_MAPPABLE, /* We don't support it as a console yet */ 16, 0 }, @@ -95,7 +95,7 @@ static struct display trsdisplay[6] = { 255, 255, FMT_MONO_WB, HW_LOWE_LE18, - GFX_MAPPABLE, /* We don't support it as a console yet */ + GFX_MULTIMODE|GFX_MAPPABLE|GFX_TEXT, 16, 0 } -- 2.34.1