From e736dbc694a91fc30ad7f784c269db11bc365dde Mon Sep 17 00:00:00 2001 From: OBattler Date: Sun, 21 Sep 2025 12:24:17 +0200 Subject: [PATCH] CL-GD 5436: Correct the ICS SB486PV check. --- src/video/vid_cl54xx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video/vid_cl54xx.c b/src/video/vid_cl54xx.c index 740c971c1..abdde1622 100644 --- a/src/video/vid_cl54xx.c +++ b/src/video/vid_cl54xx.c @@ -4337,7 +4337,7 @@ gd54xx_init(const device_t *info) case CIRRUS_ID_CLGD5436: if ((info->local & 0x200) && - (machines[machine].init == machine_at_sb486pv_init)) { + (machines[machine].init != machine_at_sb486pv_init)) { romfn = NULL; gd54xx->has_bios = 0; } else