sms, add system select option

This commit is contained in:
kub 2021-10-19 22:45:32 +02:00
parent cc1547e8cd
commit 280bfc3ca7
9 changed files with 97 additions and 28 deletions

View file

@ -74,9 +74,9 @@ struct retro_core_option_definition option_defs_us[] = {
"3 button pad"
},
{
"picodrive_sprlim",
"No sprite limit",
"Enable this to remove the sprite limit.",
"picodrive_ramcart",
"MegaCD RAM cart",
"Emulate a MegaCD RAM cart, used for save game data. WARNING: When enabled, internal save data (BRAM) will be discarded.",
{
{ "disabled", NULL },
{ "enabled", NULL },
@ -85,12 +85,13 @@ struct retro_core_option_definition option_defs_us[] = {
"disabled"
},
{
"picodrive_ramcart",
"MegaCD RAM cart",
"Emulate a MegaCD RAM cart, used for save game data. WARNING: When enabled, internal save data (BRAM) will be discarded.",
"picodrive_smstype",
"Master System type",
"Choose which type of system the core should emulate for Master system",
{
{ "disabled", NULL },
{ "enabled", NULL },
{ "Auto", NULL },
{ "Game Gear", NULL },
{ "Master System", NULL },
{ NULL, NULL },
},
"disabled"
@ -121,6 +122,17 @@ struct retro_core_option_definition option_defs_us[] = {
},
"PAR"
},
{
"picodrive_sprlim",
"No sprite limit",
"Enable this to remove the sprite limit.",
{
{ "disabled", NULL },
{ "enabled", NULL },
{ NULL, NULL },
},
"disabled"
},
{
"picodrive_overscan",
"Show Overscan",