GBHawk: rename GB compat cpu to have proper dependency
This commit is contained in:
parent
961f682cdc
commit
c16b47cbe4
|
@ -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];
|
|
@ -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));
|
||||
|
|
Loading…
Reference in New Issue