GBHawk: rename GB compat cpu to have proper dependency

This commit is contained in:
alyosha-tas 2020-02-25 08:06:43 -05:00
parent 961f682cdc
commit c16b47cbe4
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ using BizHawk.Common;
// has several quirks not present in GB ppu
namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
{
public class GBC_PPU_GB : PPU
public class GBC_GB_PPU : PPU
{
// individual byte used in palette colors
public byte[] BG_bytes = new byte[64];

View File

@ -166,7 +166,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
if (is_GBC && ((header[0x43] != 0x80) && (header[0x43] != 0xC0)))
{
ppu = new GBC_PPU_GB();
ppu = new GBC_GB_PPU();
}
Console.WriteLine("MD5: " + rom.HashMD5(0, rom.Length));