Ram Search - ~1fps speedup by removing DIsplaySearchList from DoPreview. Preview would never change the number of addresses so this function was wasteful
This commit is contained in:
parent
ce4837b326
commit
b6424aa1b7
|
@ -89,6 +89,7 @@ namespace BizHawk.MultiClient
|
|||
DoSearch();
|
||||
else if (Global.Config.RamSearchPreviewMode)
|
||||
DoPreview();
|
||||
|
||||
SearchListView.Refresh();
|
||||
SearchListView.BlazingFast = false;
|
||||
}
|
||||
|
@ -681,7 +682,6 @@ namespace BizHawk.MultiClient
|
|||
{
|
||||
if (GenerateWeedOutList())
|
||||
{
|
||||
DisplaySearchList();
|
||||
OutputLabel.Text = MakeAddressString(searchList.Count - weededList.Count) + " would be removed";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue