mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
sms, add system select option
This commit is contained in:
parent
cc1547e8cd
commit
280bfc3ca7
9 changed files with 97 additions and 28 deletions
|
@ -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",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue