Removed 1 MB VRAM option from the two 28800-5 cards as no 28800-5 card existed with that much; Removed 6 MB and 8 MB VRAM options from the Mach64GX.

This commit is contained in:
OBattler 2016-08-03 01:46:29 +02:00
parent afc6f931ca
commit 3fc8270742
2 changed files with 28 additions and 9 deletions

View file

@ -411,6 +411,33 @@ void ati28800_add_status_info(char *s, int max_len, void *p)
}
static device_config_t ati28800_config[] =
{
{
.name = "memory",
.description = "Memory size",
.type = CONFIG_SELECTION,
.selection =
{
{
.description = "256 kB",
.value = 256
},
{
.description = "512 kB",
.value = 512
},
{
.description = ""
}
},
.default_int = 512
},
{
.type = -1
}
};
static device_config_t ati28800_wonderxl_config[] =
{
{
.name = "memory",
@ -477,5 +504,5 @@ device_t ati28800_wonderxl24_device =
ati28800_speed_changed,
ati28800_force_redraw,
ati28800_add_status_info,
ati28800_config
ati28800_wonderxl_config
};

View file

@ -2766,14 +2766,6 @@ static device_config_t mach64gx_config[] =
.description = "4 MB",
.value = 4
},
{
.description = "6 MB",
.value = 6
},
{
.description = "8 MB",
.value = 8
},
{
.description = ""
}