From e885b02ce6de34008e88424ce2a0b749c50313b9 Mon Sep 17 00:00:00 2001 From: OBattler Date: Wed, 3 Dec 2025 02:43:14 +0100 Subject: [PATCH] Amstrad PC5286: Force the keyboard controller to AT and not PS/2 - the PS/2 mouse is handled by the QuickPort mouse on the C&T F82C710 System I/O chip, fixes #6525. --- src/machine/machine_table.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/machine/machine_table.c b/src/machine/machine_table.c index 89f231ae5..8f3290fbe 100644 --- a/src/machine/machine_table.c +++ b/src/machine/machine_table.c @@ -20553,7 +20553,7 @@ machine_has_flags_ex(int flags) int ret = machine_has_flags(machine, flags); if (flags & MACHINE_PS2_KBC) { - if (machine_is_ps2) + if (machine_is_ps2 && (strcmp(machine_get_internal_name(), "pc5286"))) ret |= MACHINE_PS2_KBC; else ret &= ~MACHINE_PS2_KBC;