Merge pull request #391 from negativeExponent/mapper_updates
m176: Always enable wram for ines-headered roms
This commit is contained in:
@@ -517,10 +517,12 @@ void BMCFK23C_Init(CartInfo *info) {
|
|||||||
CHRRAMSIZE = 8 * 1024;
|
CHRRAMSIZE = 8 * 1024;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Only waixing boards has battery backed wram, so only declare
|
/* Waixing boards has 32K battery backed wram */
|
||||||
* size when battery is set */
|
|
||||||
if (info->battery)
|
if (info->battery)
|
||||||
WRAMSIZE = 32 * 1024;
|
WRAMSIZE = 32 * 1024;
|
||||||
|
else
|
||||||
|
/* Always enable WRAM for ines-headered roms, lets see who complains */
|
||||||
|
WRAMSIZE = 8 * 1024;
|
||||||
}
|
}
|
||||||
|
|
||||||
GenBMCFK23C_Init(info);
|
GenBMCFK23C_Init(info);
|
||||||
@@ -534,6 +536,8 @@ void BMCFK23CA_Init(CartInfo *info)
|
|||||||
if (!UNIFchrrama)
|
if (!UNIFchrrama)
|
||||||
CHRRAMSIZE = 8 * 1024;
|
CHRRAMSIZE = 8 * 1024;
|
||||||
|
|
||||||
|
WRAMSIZE = 8 * 1024;
|
||||||
|
|
||||||
GenBMCFK23C_Init(info);
|
GenBMCFK23C_Init(info);
|
||||||
is_bmcfk23ca = 1;
|
is_bmcfk23ca = 1;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user