mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
sms, add sg-1000 support
This commit is contained in:
parent
216c9f17fa
commit
df6c895c5c
9 changed files with 72 additions and 41 deletions
|
@ -332,9 +332,11 @@ static void system_announce(void)
|
|||
|
||||
if (PicoIn.AHW & PAHW_SMS) {
|
||||
sys_name = "Master System";
|
||||
if (Pico.m.hardware & 0x1)
|
||||
if (Pico.m.hardware & PMS_HW_GG)
|
||||
sys_name = "Game Gear";
|
||||
else if (Pico.m.hardware & 0x4)
|
||||
else if (Pico.m.hardware & PMS_HW_SG)
|
||||
sys_name = "SG-1000";
|
||||
else if (Pico.m.hardware & PMS_HW_JAP)
|
||||
sys_name = "Mark III";
|
||||
#ifdef NO_SMS
|
||||
extra = " [no support]";
|
||||
|
|
|
@ -536,7 +536,7 @@ static int menu_loop_32x_options(int id, int keys)
|
|||
|
||||
#ifndef NO_SMS
|
||||
|
||||
static const char *sms_hardwares[] = { "auto", "Game Gear", "Master System", NULL };
|
||||
static const char *sms_hardwares[] = { "auto", "Game Gear", "Master System", "SG-1000", NULL };
|
||||
static const char *sms_mappers[] = { "auto", "Sega", "Codemasters", "Korea", "Korea MSX", "Korea X-in-1", "Korea 4-Pak", "Korea Janggun", "Korea Nemesis", "Taiwan 8K RAM", NULL };
|
||||
static const char h_smsfm[] = "FM sound is only supported by few games\nOther games may crash with FM enabled";
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue