Path Config - Fix bug where dual gb is selected by default when a gb game is active
This commit is contained in:
parent
6459f4dec5
commit
0cf61812c2
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue