From 379da0796c9863dbd0b5182ccbc06a8dc1a79e60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Hrdli=C4=8Dka?= Date: Thu, 3 Dec 2020 11:36:31 +0100 Subject: [PATCH] Fix XT-compatibles being treated as AT-compatible --- src/include/86box/machine.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/86box/machine.h b/src/include/86box/machine.h index 59b52b5e1..9e63418c7 100644 --- a/src/include/86box/machine.h +++ b/src/include/86box/machine.h @@ -83,7 +83,7 @@ #define MACHINE_SCSI_DUAL 0x18000000 /* sys has int dual SCSI - mark as both pri and sec SCSI */ #define IS_ARCH(m, a) (machines[m].flags & (a)) ? 1 : 0; -#define IS_AT(m) ((machines[m].flags & 0x00000FCC) && !(machines[m].flags & MACHINE_PC98)) ? 1 : 0; +#define IS_AT(m) ((machines[m].flags & 0x00000FC8) && !(machines[m].flags & MACHINE_PC98)) ? 1 : 0; #define MACHINE_MULTIPLIER_FIXED -1, -1