Fix is_award check on the Shuttle HOT-433A, fixes FDC failure on POST and PS/2 mouse

This commit is contained in:
win2kgamer
2025-08-29 21:48:07 -05:00
parent f86a898ee1
commit 7eebb6e3ca

View File

@@ -1388,7 +1388,7 @@ machine_at_hot433a_init(const machine_t *model)
return ret;
device_context(model->device);
int is_award = !strcmp(device_get_config_bios("bios"), "hot433a_award");
int is_award = !strcmp(device_get_config_bios("bios"), "hot433a_v451pg");
fn = device_get_bios_file(machine_get_device(machine), device_get_config_bios("bios"), 0);
ret = bios_load_linear(fn, 0x000e0000, 131072, 0);
device_context_restore();