fix copypaste bug in GB CDL for some games with large cartram

This commit is contained in:
zeromus 2016-05-29 13:02:00 -05:00
parent 7fb0eaf337
commit 55bd219470
1 changed files with 55 additions and 55 deletions

View File

@ -25,7 +25,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy
cdl["WRAM"] = new byte[MemoryDomains["WRAM"].Size];
if (MemoryDomains.Has("CartRAM"))
cdl["CartRAM"] = new byte[MemoryDomains["WRAM"].Size];
cdl["CartRAM"] = new byte[MemoryDomains["CartRAM"].Size];
cdl.SubType = "GB";
cdl.SubVer = 0;