mirror of
https://github.com/86Box/86Box.git
synced 2025-01-22 09:11:50 -05:00
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:
parent
afc6f931ca
commit
3fc8270742
2 changed files with 28 additions and 9 deletions
|
@ -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
|
||||
};
|
||||
|
|
|
@ -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 = ""
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue