Ram Watch - fix logic that determines whether to show Freeze or Unfreeze in the context menu
This commit is contained in:
parent
9cb0072f0f
commit
51e12040d1
|
@ -1043,7 +1043,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
SelectedIndices.Any() &&
|
SelectedIndices.Any() &&
|
||||||
SelectedWatches.All(w => w.Domain.CanPoke());
|
SelectedWatches.All(w => w.Domain.CanPoke());
|
||||||
|
|
||||||
var allCheats = _watches.All(x => Global.CheatList.IsActive(x.Domain, x.Address));
|
var allCheats = SelectedWatches.All(x => Global.CheatList.IsActive(x.Domain, x.Address));
|
||||||
|
|
||||||
if (allCheats)
|
if (allCheats)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue