dont byteswap gpgx Z80 domains, fixes #3290

This commit is contained in:
CasualPokePlayer 2022-06-25 14:36:33 -07:00
parent 2ac765b000
commit 948049bb20
1 changed files with 4 additions and 1 deletions

View File

@ -49,9 +49,12 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx
},
wordSize: 2));
}
else if (name.Contains("Z80"))
{
mm.Add(new MemoryDomainIntPtrMonitor(name, endian, area, size, true, 1, _elf));
}
else
{
// TODO: are the Z80 domains really Swap16 in the core? Check this
mm.Add(new MemoryDomainIntPtrSwap16Monitor(name, endian, area, size, true, _elf));
}
}