From f53f9224b6435ff50855e5e1d6d4063c156a2a2b Mon Sep 17 00:00:00 2001 From: goyuken Date: Sat, 29 Dec 2012 16:00:52 +0000 Subject: [PATCH] introduce hack that allows dual gameboy to accept input properly. tetris seems to function with link features working --- BizHawk.MultiClient/MainForm.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/BizHawk.MultiClient/MainForm.cs b/BizHawk.MultiClient/MainForm.cs index 1ddc8d5811..6d1289278f 100644 --- a/BizHawk.MultiClient/MainForm.cs +++ b/BizHawk.MultiClient/MainForm.cs @@ -2005,6 +2005,9 @@ namespace BizHawk.MultiClient case "GBC": if (true) // DEBUG { + // this is horrible. we MUST decide when we should be using Game.System and when we should be using Emulator.SystemID + game.System = "DGB"; // HACK + if (Global.Config.GB_ForceDMG) game.AddOption("ForceDMG"); if (Global.Config.GB_GBACGB) game.AddOption("GBACGB"); if (Global.Config.GB_MulticartCompat) game.AddOption("MulitcartCompat");