fix mapper 115 for #3515357 (actually to fix mapper 248 for Bao Qing Tian)

This commit is contained in:
zeromus 2012-04-09 20:12:28 +00:00
parent 8a63869070
commit 4353064ead
1 changed files with 4 additions and 4 deletions

View File

@ -806,10 +806,10 @@ void Mapper114_Init(CartInfo *info)
static void M115PW(uint32 A, uint8 V)
{
if(EXPREGS[0]&0x80)
setprg32(0x8000,(EXPREGS[0]&7)>>1);
else
setprg8(A,V);
//zero 09-apr-2012 - #3515357 - changed to support Bao Qing Tian (mapper 248) which was missing BG gfx. 115 game(s?) seem still to work OK.
GENPWRAP(A,V);
if(A==0x8000 && EXPREGS[0]&0x80)
setprg16(0x8000,(EXPREGS[0]&0xF));
}
static void M115CW(uint32 A, uint8 V)