fix copypaste bug in GB CDL for some games with large cartram
This commit is contained in:
parent
7fb0eaf337
commit
55bd219470
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue