From 277795dc69ecf697289d7ebf2ba194d2202488c1 Mon Sep 17 00:00:00 2001 From: OBattler Date: Mon, 3 Jul 2023 02:34:12 +0200 Subject: [PATCH] Fixed a compile-breaking mistake in machine.h. --- 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 ec2919a7c..cee90649f 100644 --- a/src/include/86box/machine.h +++ b/src/include/86box/machine.h @@ -32,7 +32,7 @@ #define MACHINE_BUS_CBUS 0x00000010 /* sys has C-BUS bus */ #define MACHINE_BUS_PS2_LATCH 0x00000020 /* system has PS/2 keyboard controller IRQ latch */ #define MACHINE_BUS_PS2_PORTS 0x00000040 /* system has PS/2 keyboard and mouse ports */ -#define MACHINE_BUS_PS2 (MACHIN_BUS_PS2_LATCH | MACHINE_BUS_PS2_PORTS) +#define MACHINE_BUS_PS2 (MACHINE_BUS_PS2_LATCH | MACHINE_BUS_PS2_PORTS) #define MACHINE_BUS_EISA 0x00000080 /* sys has EISA bus */ #define MACHINE_BUS_VLB 0x00000100 /* sys has VL bus */ #define MACHINE_BUS_MCA 0x00000200 /* sys has MCA bus */