Libretro: Enable battery save ram support for MBC2 and MBC7

This commit is contained in:
retro-wertz 2018-07-24 11:01:25 +08:00 committed by Rafael Kitover
parent a9ab09f749
commit 1289e08cb4
1 changed files with 3 additions and 4 deletions

View File

@ -110,10 +110,9 @@ static bool gb_hasbattery(void)
case 0x1e: // MBC5 case 0x1e: // MBC5
//incomplete, does not save gbTAMA5ram //incomplete, does not save gbTAMA5ram
case 0xfd: // TAMA5 + extended case 0xfd: // TAMA5 + extended
return true; case 0x06: // MBC2
// need to remap these case 0x22: // MBC7
//case 0x06: // MBC2 return true;
//case 0x22: // MBC7
} }
return false; return false;
} }