From 296b88f1557196f7da1c5770b1e366519e5a91e9 Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Tue, 16 Jan 2018 20:00:42 -0500 Subject: [PATCH] GB minor clean ups --- .../Consoles/Nintendo/GBHawk/GBHawk.ISettable.cs | 4 ++-- BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawk.cs | 2 +- BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawk.ISettable.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawk.ISettable.cs index 79217600e4..56cea73ae2 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawk.ISettable.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawk.ISettable.cs @@ -44,8 +44,8 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk Gr } - [DisplayName("Console Mode")] - [Description("Pick which console to run, 'Auto' chooses from ROM header, 'GB' and 'GBC' chooses the respective system")] + [DisplayName("Color Mode")] + [Description("Pick Between Green scale and Grey scale colors")] [DefaultValue(PaletteType.BW)] public PaletteType Palette { get; set; } diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawk.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawk.cs index ec6cc6a5c8..02660d1f7f 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawk.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawk.cs @@ -88,7 +88,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk _syncSettings = (GBSyncSettings)syncSettings ?? new GBSyncSettings(); _controllerDeck = new GBHawkControllerDeck(_syncSettings.Port1); - byte[] Bios = comm.CoreFileProvider.GetFirmware("GB", "World", false, "BIOS Not Found, Cannot Load"); + byte[] Bios = comm.CoreFileProvider.GetFirmware("GB", "World", true, "BIOS Not Found, Cannot Load"); if (Bios == null) { diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs index 2e04142fdf..e87bf8382d 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs @@ -95,7 +95,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy if ((flags & LibGambatte.LoadFlags.FORCE_DMG) == LibGambatte.LoadFlags.FORCE_DMG) { - byte[] Bios = comm.CoreFileProvider.GetFirmware("GB", "World", false, "BIOS Not Found, Cannot Load"); + byte[] Bios = comm.CoreFileProvider.GetFirmware("GB", "World", true, "BIOS Not Found, Cannot Load"); if (LibGambatte.gambatte_loaddmgbios(GambatteState, Bios) != 0) { @@ -104,7 +104,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy } else { - byte[] Bios = comm.CoreFileProvider.GetFirmware("GBC", "World", false, "BIOS Not Found, Cannot Load"); + byte[] Bios = comm.CoreFileProvider.GetFirmware("GBC", "World", true, "BIOS Not Found, Cannot Load"); if (LibGambatte.gambatte_loadgbcbios(GambatteState, Bios) != 0) {