From 968c6edac0b17b46770ae419a9afcdfa8c246e8f Mon Sep 17 00:00:00 2001 From: richardg867 Date: Fri, 24 Oct 2025 12:40:25 -0300 Subject: [PATCH] Fix Multitech BIOS internal names [skip ci] --- src/machine/m_xt.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/machine/m_xt.c b/src/machine/m_xt.c index 56ba5f843..baff87d4c 100644 --- a/src/machine/m_xt.c +++ b/src/machine/m_xt.c @@ -1214,7 +1214,7 @@ static const device_config_t pc500_config[] = { .name = "bios", .description = "BIOS Version", .type = CONFIG_BIOS, - .default_string = "pc500_330", + .default_string = "pc500", .default_int = 0, .file_filter = NULL, .spinner = { 0 }, @@ -1222,7 +1222,7 @@ static const device_config_t pc500_config[] = { .bios = { { .name = "3.30", - .internal_name = "pc500_330", + .internal_name = "pc500", .bios_type = BIOS_NORMAL, .files_no = 1, .local = 0, @@ -1326,7 +1326,7 @@ static const device_config_t pc500plus_config[] = { .name = "bios", .description = "BIOS Version", .type = CONFIG_BIOS, - .default_string = "pc500plus_404", + .default_string = "pc500plus", .default_int = 0, .file_filter = NULL, .spinner = { 0 }, @@ -1342,7 +1342,7 @@ static const device_config_t pc500plus_config[] = { }, { .name = "4.04", - .internal_name = "pc500plus_404", + .internal_name = "pc500plus", .bios_type = BIOS_NORMAL, .files_no = 1, .local = 0, @@ -1445,14 +1445,14 @@ static const device_config_t pc700_config[] = { .name = "bios", .description = "BIOS Version", .type = CONFIG_BIOS, - .default_string = "pc700_330", + .default_string = "pc700", .default_int = 0, .file_filter = NULL, .spinner = { 0 }, .bios = { { .name = "3.30", - .internal_name = "pc700_330", + .internal_name = "pc700", .bios_type = BIOS_NORMAL, .files_no = 1, .local = 0,