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.

This commit is contained in:
OBattler
2025-12-03 02:43:14 +01:00
parent cf0068112d
commit e885b02ce6

View File

@@ -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;