Merge pull request #585 from BacteriaMage/master

fix superfx sram size detection
This commit is contained in:
sanni 2022-10-26 09:50:31 +02:00 committed by GitHub
commit e106488453
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1102,8 +1102,8 @@ boolean checkcart_SNES() {
byte sramSizeExp;
if ((romChips == 19) || (romChips == 20) || (romChips == 21) || (romChips == 26)) {
// SuperFX
if (snesHeader[0x7FDA - headerStart] == 0x33) {
sramSizeExp = snesHeader[0x7FBD - headerStart];
if (snesHeader[0xFFDA - headerStart] == 0x33) {
sramSizeExp = snesHeader[0xFFBD - headerStart];
} else {
if (strncmp(romName, "STARFOX2", 8) == 0) {
sramSizeExp = 6;