From 9682b88cf2b2d19b0852485c0634f34d7ca95404 Mon Sep 17 00:00:00 2001 From: RichardG867 Date: Sat, 25 Oct 2025 15:06:13 -0300 Subject: [PATCH] Fix typos in commented out PCjr code [skip ci] --- src/machine/m_pcjr.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/machine/m_pcjr.c b/src/machine/m_pcjr.c index 77a0ee392..78f7ba710 100644 --- a/src/machine/m_pcjr.c +++ b/src/machine/m_pcjr.c @@ -832,8 +832,8 @@ static const device_config_t pcjr_config[] = { .bios = { { 0 } } }, { - .name = "ir_reciever", - .description = "Enable IR Reciever", + .name = "ir_receiver", + .description = "Enable IR Receiver", .type = CONFIG_BINARY, .default_string = NULL, .default_int = 0, @@ -883,7 +883,7 @@ machine_pcjr_init(UNUSED(const machine_t *model)) #endif pcjr->option_fdc = 0; #if 0 - pcjr->option_ir = device_get_config_int("ir_reciever"); + pcjr->option_ir = device_get_config_int("ir_receiver"); #else pcjr->option_ir = 0; #endif