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();
|
DoSearch();
|
||||||
else if (Global.Config.RamSearchPreviewMode)
|
else if (Global.Config.RamSearchPreviewMode)
|
||||||
DoPreview();
|
DoPreview();
|
||||||
|
|
||||||
SearchListView.Refresh();
|
SearchListView.Refresh();
|
||||||
SearchListView.BlazingFast = false;
|
SearchListView.BlazingFast = false;
|
||||||
}
|
}
|
||||||
|
@ -681,7 +682,6 @@ namespace BizHawk.MultiClient
|
||||||
{
|
{
|
||||||
if (GenerateWeedOutList())
|
if (GenerateWeedOutList())
|
||||||
{
|
{
|
||||||
DisplaySearchList();
|
|
||||||
OutputLabel.Text = MakeAddressString(searchList.Count - weededList.Count) + " would be removed";
|
OutputLabel.Text = MakeAddressString(searchList.Count - weededList.Count) + " would be removed";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue