mirror of
https://github.com/86Box/86Box.git
synced 2026-02-22 01:25:33 -07:00
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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user