From 38eb5c455106c4cef3b63cb8feea1ba06360dfb5 Mon Sep 17 00:00:00 2001 From: OBattler Date: Wed, 17 Jun 2020 01:26:16 +0200 Subject: [PATCH] The AVGA1 and AVGA2 cards no longer require an AT, fixes #817. --- src/video/vid_cl54xx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/video/vid_cl54xx.c b/src/video/vid_cl54xx.c index f3f428f7e..07ffad50a 100644 --- a/src/video/vid_cl54xx.c +++ b/src/video/vid_cl54xx.c @@ -3392,7 +3392,7 @@ static const device_config_t gd5434_config[] = const device_t gd5401_isa_device = { "Cirrus Logic GD-5401 (ACUMOS AVGA1)", - DEVICE_AT | DEVICE_ISA, + DEVICE_ISA, CIRRUS_ID_CLGD5401, gd54xx_init, gd54xx_close, NULL, @@ -3405,7 +3405,7 @@ const device_t gd5401_isa_device = const device_t gd5402_isa_device = { "Cirrus Logic GD-5402 (ACUMOS AVGA2)", - DEVICE_AT | DEVICE_ISA, + DEVICE_ISA, CIRRUS_ID_CLGD5402, gd54xx_init, gd54xx_close, NULL,