Ram Search - fix defaulting to fast mode

This commit is contained in:
adelikat 2013-11-16 14:46:57 +00:00
parent e81e4238de
commit 3d9faa87c5
1 changed files with 5 additions and 1 deletions

View File

@ -70,7 +70,6 @@ namespace BizHawk.Client.EmuHawk
Searches = new RamSearchEngine(Settings);
TopMost = Global.Config.RamSearchAlwaysOnTop;
}
private void HardSetDisplayTypeDropDown(Watch.DisplayType type)
@ -123,6 +122,11 @@ namespace BizHawk.Client.EmuHawk
dropdown_dontfire = false;
if (Settings.Mode == RamSearchEngine.Settings.SearchMode.Fast)
{
SetToFastMode();
}
NewSearch();
}