Cheats - fix weird behavior caused by the Cheat changed event handler not being wired up on file load

This commit is contained in:
adelikat 2013-12-21 17:18:08 +00:00
parent 1ad3b83d83
commit 8d680d79a5
1 changed files with 1 additions and 2 deletions

View File

@ -374,8 +374,7 @@ namespace BizHawk.Client.Common
BIGENDIAN
);
Cheat c = new Cheat(w, value, compare, !Global.Config.DisableCheatsOnLoad && ENABLED);
_cheatList.Add(c);
Add(new Cheat(w, value, compare, !Global.Config.DisableCheatsOnLoad && ENABLED));
}
}
catch