fix separator bug in RAMWatch

This commit is contained in:
SuuperW 2020-07-20 09:09:46 -05:00
parent ab0ca538f6
commit 22d78efabd
1 changed files with 1 additions and 1 deletions

View File

@ -456,7 +456,7 @@ namespace BizHawk.Client.Common
startIndex = line.IndexOf('\t') + 1;
line = line.Substring(startIndex, line.Length - startIndex); // Domain
temp = line.Substring(0, line.IndexOf('\t'));
memDomain = _memoryDomains[temp] ?? _memoryDomains.MainMemory;
memDomain = size == WatchSize.Separator ? null : _memoryDomains[temp] ?? _memoryDomains.MainMemory;
}
startIndex = line.IndexOf('\t') + 1;