From 712839ebb1ab9f3545fbdbce7ad66ef9e3288abc Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Sat, 7 Jul 2018 20:26:42 +0100 Subject: [PATCH] mode: there is a difference between the 9918 and 9918A - we mean A --- Applications/util/mode.c | 4 ++-- Library/include/sys/graphics.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Applications/util/mode.c b/Applications/util/mode.c index 38d34a06..2625be2a 100644 --- a/Applications/util/mode.c +++ b/Applications/util/mode.c @@ -71,8 +71,8 @@ static void decode_mode_c(int c) case HW_UNACCEL: printf("unaccelerated framebuffer"); break; - case HW_VDP_9918: - printf("9918"); + case HW_VDP_9918A: + printf("9918A"); break; case HW_VDP_9938: printf("9938"); diff --git a/Library/include/sys/graphics.h b/Library/include/sys/graphics.h index 7e3d228a..af599e56 100644 --- a/Library/include/sys/graphics.h +++ b/Library/include/sys/graphics.h @@ -21,7 +21,7 @@ struct display { #define FMT_UBEE 130 /* Microbee 6545 modes */ uint8_t hardware; #define HW_UNACCEL 1 /* Simple display */ -#define HW_VDP_9918 128 /* Not neccessarily MSX... */ +#define HW_VDP_9918A 128 /* Not neccessarily MSX... */ #define HW_VDP_9938 129 #define HW_TRS80GFX 130 /* TRS80 model 4 graphics board */ #define HW_HRG1B 131 /* HRG1B for TRS80 and VidoeGenie */ -- 2.34.1