Fix domain names in GBHawk CDL (fixes #2552)

fixes 7e00b7892
This commit is contained in:
YoshiRulz 2021-01-09 02:55:14 +10:00
parent 5a8c58de3c
commit 0272684cdf
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 2 additions and 2 deletions

View File

@ -19,9 +19,9 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
public void NewCDL(ICodeDataLog cdl)
{
cdl["ROM"] = new byte[MemoryDomains["ROM"].Size];
cdl["HRAM"] = new byte[MemoryDomains["Zero Page RAM"].Size];
cdl["HRAM"] = new byte[MemoryDomains["HRAM"].Size];
cdl["WRAM"] = new byte[MemoryDomains["Main RAM"].Size];
cdl["WRAM"] = new byte[MemoryDomains["WRAM"].Size];
if (MemoryDomains.Has("Cart RAM"))
{