Fix crash when loading `.wch` into RAM Search

This commit is contained in:
James Groom 2024-03-13 23:42:25 +10:00 committed by GitHub
parent 0f8995eec7
commit 8d892346d2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -284,6 +284,7 @@ namespace BizHawk.Client.Common.RamSearchEngine
};
_watchList = (append ? _watchList.Concat(list) : list).ToArray();
_isSorted = false; //TODO can this be smarter, such as by inserting instead of appending?
}
public void Sort(string column, bool reverse)