maybe fix mapper 242 (dragon quest 8 UNL)

This commit is contained in:
zeromus 2012-04-05 18:55:13 +00:00
parent 7e84644dff
commit abdfaa0a52
1 changed files with 1 additions and 3 deletions

View File

@ -24,12 +24,10 @@
DECLFW(Mapper242_write) DECLFW(Mapper242_write)
{ {
ROM_BANK32((A>>3)&0xF); ROM_BANK32((A>>3)&0xF);
switch(V&3) switch((A>>1)&1)
{ {
case 0:MIRROR_SET(0);break; case 0:MIRROR_SET(0);break;
case 1:MIRROR_SET(1);break; case 1:MIRROR_SET(1);break;
case 2:onemir(0);break;
case 3:onemir(1);break;
} }
} }