mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
core, preparations for sc-3000 support
This commit is contained in:
parent
ecf8764253
commit
cab84f29e5
10 changed files with 66 additions and 18 deletions
|
@ -1789,6 +1789,8 @@ static void update_variables(bool first_run)
|
|||
PicoIn.hwSelect = PHWS_GG;
|
||||
else if (strcmp(var.value, "SG-1000") == 0)
|
||||
PicoIn.hwSelect = PHWS_SG;
|
||||
else if (strcmp(var.value, "SC-3000") == 0)
|
||||
PicoIn.hwSelect = PHWS_SC;
|
||||
else
|
||||
PicoIn.hwSelect = PHWS_SMS;
|
||||
}
|
||||
|
|
|
@ -118,6 +118,7 @@ struct retro_core_option_v2_definition option_defs_us[] = {
|
|||
{ "Game Gear", NULL },
|
||||
{ "Master System", NULL },
|
||||
{ "SG-1000" , NULL },
|
||||
{ "SC-3000" , NULL },
|
||||
{ NULL, NULL },
|
||||
},
|
||||
"Auto"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue