mirror of
https://github.com/86Box/86Box.git
synced 2025-01-23 09:42:47 -05:00
Rename the Gateway 2000 Venus machine to all-lowercase internally
This commit is contained in:
parent
cf8dea5ed3
commit
5fe1049354
3 changed files with 9 additions and 9 deletions
|
@ -707,7 +707,7 @@ extern int machine_at_aurora_init(const machine_t *);
|
|||
extern int machine_at_686nx_init(const machine_t *);
|
||||
extern int machine_at_acerv60n_init(const machine_t *);
|
||||
extern int machine_at_vs440fx_init(const machine_t *);
|
||||
extern int machine_at_GW2KVenus_init(const machine_t *);
|
||||
extern int machine_at_gw2kvenus_init(const machine_t *);
|
||||
extern int machine_at_ap440fx_init(const machine_t *);
|
||||
extern int machine_at_mb600n_init(const machine_t *);
|
||||
extern int machine_at_8600ttc_init(const machine_t *);
|
||||
|
|
|
@ -196,15 +196,15 @@ machine_at_vs440fx_init(const machine_t *model)
|
|||
}
|
||||
|
||||
int
|
||||
machine_at_GW2KVenus_init(const machine_t *model)
|
||||
machine_at_gw2kvenus_init(const machine_t *model)
|
||||
{
|
||||
int ret;
|
||||
|
||||
ret = bios_load_linear_combined2("roms/machines/GW2KVenus/1011CS1T.BIO",
|
||||
"roms/machines/GW2KVenus/1011CS1T.BI1",
|
||||
"roms/machines/GW2KVenus/1011CS1T.BI2",
|
||||
"roms/machines/GW2KVenus/1011CS1T.BI3",
|
||||
"roms/machines/GW2KVenus/1011CS1T.RCV",
|
||||
ret = bios_load_linear_combined2("roms/machines/gw2kvenus/1011CS1T.BIO",
|
||||
"roms/machines/gw2kvenus/1011CS1T.BI1",
|
||||
"roms/machines/gw2kvenus/1011CS1T.BI2",
|
||||
"roms/machines/gw2kvenus/1011CS1T.BI3",
|
||||
"roms/machines/gw2kvenus/1011CS1T.RCV",
|
||||
0x3a000, 128);
|
||||
|
||||
if (bios_only || !ret)
|
||||
|
|
|
@ -11738,10 +11738,10 @@ const machine_t machines[] = {
|
|||
/* It's a Intel VS440FX with a Gateway 2000 OEM BIOS */
|
||||
{
|
||||
.name = "[i440FX] Gateway 2000 Venus",
|
||||
.internal_name = "GW2KVenus",
|
||||
.internal_name = "gw2kvenus",
|
||||
.type = MACHINE_TYPE_SOCKET8,
|
||||
.chipset = MACHINE_CHIPSET_INTEL_440FX,
|
||||
.init = machine_at_GW2KVenus_init,
|
||||
.init = machine_at_gw2kvenus_init,
|
||||
.p1_handler = NULL,
|
||||
.gpio_handler = NULL,
|
||||
.available_flag = MACHINE_AVAILABLE,
|
||||
|
|
Loading…
Add table
Reference in a new issue