Path Config - Fix bug where dual gb is selected by default when a gb game is active

This commit is contained in:
adelikat 2014-11-17 23:16:50 +00:00
parent 6459f4dec5
commit 0cf61812c2
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ namespace BizHawk.Client.EmuHawk
{
return PathTabControl.TabPages
.OfType<TabPage>()
.FirstOrDefault(x => x.Name.ToUpper().Contains(name.ToUpper()))
.FirstOrDefault(x => x.Name.ToUpper().StartsWith(name.ToUpper()))
?? new TabPage();
}