From d0583d62d6c9f96bd26c327c827f8f182aa73c4f Mon Sep 17 00:00:00 2001 From: OBattler Date: Fri, 12 Dec 2025 15:20:11 +0100 Subject: [PATCH] XT Keyboard: Actually honor the configuration option for the keys. --- src/device/keyboard_xt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/device/keyboard_xt.c b/src/device/keyboard_xt.c index d31d5f027..41f8937e5 100644 --- a/src/device/keyboard_xt.c +++ b/src/device/keyboard_xt.c @@ -562,7 +562,7 @@ kbd_init(const device_t *info) { kbd_t *dev = (kbd_t *) calloc(1, sizeof(kbd_t)); - dev->type = info->local; + dev->type = device_get_config_int("keys"); if (dev->type == KBD_83_KEY) keyboard_set_table(scancode_xt);