From 809e1f3efbb2695e9fd5d0f3107a1c32c3ee74fb Mon Sep 17 00:00:00 2001 From: OBattler Date: Sat, 27 Sep 2025 04:16:01 +0200 Subject: [PATCH] Give the Jetway J-403TG with AMI BIOS the correct NVR device, fixes #6230. --- src/machine/m_at_socket3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/machine/m_at_socket3.c b/src/machine/m_at_socket3.c index 8d460186c..d882dbd4d 100644 --- a/src/machine/m_at_socket3.c +++ b/src/machine/m_at_socket3.c @@ -216,7 +216,7 @@ machine_at_403tg_init(const machine_t *model) return ret; device_context(model->device); - int nvr_hack = !strcmp(device_get_config_bios("bios"), "403tg_d"); + int nvr_hack = !strcmp(device_get_config_bios("bios"), "403tg"); fn = device_get_bios_file(machine_get_device(machine), device_get_config_bios("bios"), 0); ret = bios_load_linear(fn, 0x000f0000, 65536, 0);