mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
bugfixes, new config system and messed code for it
git-svn-id: file:///home/notaz/opt/svn/PicoDrive@393 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
parent
c46ffd310f
commit
1ca2ea4f60
16 changed files with 352 additions and 192 deletions
10
Pico/Cart.c
10
Pico/Cart.c
|
@ -655,17 +655,17 @@ void PicoCartDetect(void)
|
|||
}
|
||||
|
||||
// Detect 12-in-1 mapper
|
||||
else if ((name_cmp("ROBOCOP 3") && Pico.romsize == 0x200000) ||
|
||||
(rom_strcmp(0x160, "FLICKY") && Pico.romsize >= 0x200000))
|
||||
else if ((name_cmp("ROBOCOP 3") == 0 && Pico.romsize == 0x200000) ||
|
||||
(rom_strcmp(0x160, "FLICKY") == 0 && Pico.romsize >= 0x200000))
|
||||
{
|
||||
carthw_12in1_startup();
|
||||
}
|
||||
|
||||
// Realtec mapper
|
||||
else if (Pico.romsize == 512*1024 && (
|
||||
rom_strcmp(0x94, "THE EARTH DEFEND") ||
|
||||
rom_strcmp(0xfe, "WISEGAME 11-03-1993") || // Funny World
|
||||
rom_strcmp(0x95, "MALLET LEGEND "))) // Whac-A-Critter
|
||||
rom_strcmp(0x94, "THE EARTH DEFEND") == 0 ||
|
||||
rom_strcmp(0xfe, "WISEGAME 11-03-1993") == 0 || // Funny World
|
||||
rom_strcmp(0x95, "MALLET LEGEND ") == 0)) // Whac-A-Critter
|
||||
{
|
||||
carthw_realtec_startup();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue