Genesis game genie code fix here as well

other half of fix to #777
This commit is contained in:
alyosha-tas 2017-04-18 07:14:18 -04:00 committed by GitHub
parent 9bea9875a8
commit 88348f03fa
1 changed files with 1 additions and 1 deletions

View File

@ -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));
}