Update GBHawk.cs
This commit is contained in:
parent
5a38882f9e
commit
c7f717981b
|
@ -112,12 +112,12 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
|
||||||
{
|
{
|
||||||
if (game.System == "GB")
|
if (game.System == "GB")
|
||||||
{
|
{
|
||||||
Bios = comm.CoreFileProvider.GetFirmware("GBS", "World", true, "BIOS Not Found, Cannot Load");
|
Bios = comm.CoreFileProvider.GetFirmware("GB", "World", true, "BIOS Not Found, Cannot Load");
|
||||||
ppu = new GB_PPU();
|
ppu = new GB_PPU();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
Bios = comm.CoreFileProvider.GetFirmware("GBCS", "World", true, "BIOS Not Found, Cannot Load");
|
Bios = comm.CoreFileProvider.GetFirmware("GBC", "World", true, "BIOS Not Found, Cannot Load");
|
||||||
ppu = new GBC_PPU();
|
ppu = new GBC_PPU();
|
||||||
is_GBC = true;
|
is_GBC = true;
|
||||||
}
|
}
|
||||||
|
@ -125,12 +125,12 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
|
||||||
}
|
}
|
||||||
else if (_syncSettings.ConsoleMode == GBSyncSettings.ConsoleModeType.GB)
|
else if (_syncSettings.ConsoleMode == GBSyncSettings.ConsoleModeType.GB)
|
||||||
{
|
{
|
||||||
Bios = comm.CoreFileProvider.GetFirmware("GBS", "World", true, "BIOS Not Found, Cannot Load");
|
Bios = comm.CoreFileProvider.GetFirmware("GB", "World", true, "BIOS Not Found, Cannot Load");
|
||||||
ppu = new GB_PPU();
|
ppu = new GB_PPU();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
Bios = comm.CoreFileProvider.GetFirmware("GBCS", "World", true, "BIOS Not Found, Cannot Load");
|
Bios = comm.CoreFileProvider.GetFirmware("GBC", "World", true, "BIOS Not Found, Cannot Load");
|
||||||
ppu = new GBC_PPU();
|
ppu = new GBC_PPU();
|
||||||
is_GBC = true;
|
is_GBC = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue