X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=boards%2F186.c;h=1713050bf8b0b78f7791529f5aa7962ffd830497;hb=0d6a66c2a80f50ae51327cd406f9df14d99ad02e;hp=3698c6cab37111f173f6518abd90e7e779980c18;hpb=d97315ac0bca825d2d50a44453bc5652946e2c67;p=fceu.git diff --git a/boards/186.c b/boards/186.c index 3698c6c..1713050 100644 --- a/boards/186.c +++ b/boards/186.c @@ -29,7 +29,7 @@ static uint8 regs[4]; static SFORMAT StateRegs[]= { {regs, 4, "DREG"}, - {SWRAM, 2816, "SWRAM"}, + {SWRAM, 2816, "SWRM"}, {0} }; @@ -97,8 +97,8 @@ void Mapper186_Init(CartInfo *info) info->Power=M186Power; info->Close=M186Close; GameStateRestore=M186Restore; - WRAM=(uint8*)FCEU_gmalloc(32384); - SetupCartPRGMapping(0x10,WRAM,32384,1); - AddExState(WRAM, 32384, 0, "WRAM"); + WRAM=(uint8*)FCEU_gmalloc(32768); + SetupCartPRGMapping(0x10,WRAM,32768,1); + AddExState(WRAM, 32768, 0, "WRAM"); AddExState(StateRegs, ~0, 0, 0); }