From 0b2ef2bbff51e7f00ef8e89c32a50a1a758dd207 Mon Sep 17 00:00:00 2001 From: masterofpuppets152001 Date: Tue, 23 Apr 2013 22:00:16 +0000 Subject: [PATCH] apply Game Genie converted cheat to BUS not CARTROM, code still don't work although --- BizHawk.MultiClient/SNESTools/SNESGameGenie.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.MultiClient/SNESTools/SNESGameGenie.cs b/BizHawk.MultiClient/SNESTools/SNESGameGenie.cs index 418733d3e8..e65613f805 100644 --- a/BizHawk.MultiClient/SNESTools/SNESGameGenie.cs +++ b/BizHawk.MultiClient/SNESTools/SNESGameGenie.cs @@ -311,7 +311,7 @@ namespace BizHawk.MultiClient c.address = int.Parse(AddressBox.Text, NumberStyles.HexNumber); c.value = byte.Parse(ValueBox.Text, NumberStyles.HexNumber); c.compare = null; - c.domain = Global.Emulator.MemoryDomains[1]; //System Bus only + c.domain = Global.Emulator.MemoryDomains[7]; //Bus c.Enable(); Global.MainForm.Cheats1.AddCheat(c);