mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
core, revisit Sega 8 bit hardware handling
This commit is contained in:
parent
cab84f29e5
commit
0aa63fce12
9 changed files with 63 additions and 58 deletions
|
@ -332,11 +332,11 @@ static void system_announce(void)
|
|||
|
||||
if (PicoIn.AHW & PAHW_SMS) {
|
||||
sys_name = "Master System";
|
||||
if (Pico.m.hardware & PMS_HW_GG)
|
||||
if (PicoIn.AHW & PAHW_GG)
|
||||
sys_name = "Game Gear";
|
||||
else if (Pico.m.hardware & PMS_HW_SG)
|
||||
else if (PicoIn.AHW & PAHW_SG)
|
||||
sys_name = "SG-1000";
|
||||
else if (Pico.m.hardware & PMS_HW_SC)
|
||||
else if (PicoIn.AHW & PAHW_SC)
|
||||
sys_name = "SC-3000";
|
||||
else if (Pico.m.hardware & PMS_HW_JAP)
|
||||
sys_name = "Mark III";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue