diff --git a/BizHawk.Client.Common/tools/WatchList.cs b/BizHawk.Client.Common/tools/WatchList.cs index 26eab6b70b..d75043e5f2 100644 --- a/BizHawk.Client.Common/tools/WatchList.cs +++ b/BizHawk.Client.Common/tools/WatchList.cs @@ -38,7 +38,10 @@ namespace BizHawk.Client.Common _watchList.ForEach(w => { - w.Domain = _core.MemoryDomains[w.Domain.Name]; + if (w.Domain != null) + { + w.Domain = _core.MemoryDomains[w.Domain.Name]; + } }); }