mapper 115 - regression fix
This commit is contained in:
parent
441c804dbe
commit
71cc0baf0e
|
@ -819,10 +819,10 @@ void Mapper114_Init(CartInfo *info)
|
||||||
|
|
||||||
static void M115PW(uint32 A, uint8 V)
|
static void M115PW(uint32 A, uint8 V)
|
||||||
{
|
{
|
||||||
if(EXPREGS[0]&0x80)
|
//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.
|
||||||
setprg32(0x8000,(EXPREGS[0]&7)>>1);
|
GENPWRAP(A,V);
|
||||||
else
|
if(A==0x8000 && EXPREGS[0]&0x80)
|
||||||
setprg8(A,V);
|
setprg16(0x8000,(EXPREGS[0]&0xF));
|
||||||
}
|
}
|
||||||
|
|
||||||
static void M115CW(uint32 A, uint8 V)
|
static void M115CW(uint32 A, uint8 V)
|
||||||
|
|
Loading…
Reference in New Issue