From 28241e3042b442e2844842a66a703963a9e18915 Mon Sep 17 00:00:00 2001 From: TiKevin83 Date: Tue, 2 Mar 2021 12:55:58 -0500 Subject: [PATCH] fix autodetection of console mode --- .../Consoles/Nintendo/Gameboy/Gambatte.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs index 853e4178ff..55d732f2eb 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs @@ -68,6 +68,8 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy flags |= LibGambatte.LoadFlags.CGB_MODE | LibGambatte.LoadFlags.GBA_FLAG; break; default: + if (game.System == "GBC") + flags |= LibGambatte.LoadFlags.CGB_MODE; break; }