remove cnrom chr rom size limit for dwedit's homebrew cart.

This commit is contained in:
zeromus 2008-08-10 22:43:06 +00:00
parent 5f7ba50ec3
commit 919896bba5
1 changed files with 5 additions and 3 deletions

View File

@ -89,7 +89,9 @@ void Mapper184_Init(CartInfo *info)
static void CNROMSync(void)
{
setchr8(latche&3);
//mbg 8/10/08 - fixed this so that large homebrew roms would work.
//setchr8(latche&3);
setchr8(latche);
setprg16(0x8000,0);
setprg16(0xC000,1);
}