From 88348f03fa54d67ec50ae0b3aefe3a3bb74a2dd6 Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Tue, 18 Apr 2017 07:14:18 -0400 Subject: [PATCH] Genesis game genie code fix here as well other half of fix to #777 --- BizHawk.Client.EmuHawk/tools/GameShark.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Client.EmuHawk/tools/GameShark.cs b/BizHawk.Client.EmuHawk/tools/GameShark.cs index 470439dcbb..f595be94f5 100644 --- a/BizHawk.Client.EmuHawk/tools/GameShark.cs +++ b/BizHawk.Client.EmuHawk/tools/GameShark.cs @@ -2490,7 +2490,7 @@ namespace BizHawk.Client.EmuHawk address = add.ToString("X6"); value = val.ToString("X4"); //Game Geneie, modifies the "ROM" which is why it says, "MD CART" - var watch = Watch.GenerateWatch(MemoryDomains["MD CART"], long.Parse(address, NumberStyles.HexNumber), WatchSize.Word, Common.DisplayType.Hex, true, txtDescription.Text); + var watch = Watch.GenerateWatch(MemoryDomains["M68K BUS"], long.Parse(address, NumberStyles.HexNumber), WatchSize.Word, Common.DisplayType.Hex, true, txtDescription.Text); //Add Cheat Global.CheatList.Add(new Cheat(watch, val)); }