When core preference changes, set for all sysIDs in group
see 823ce4f78
This commit is contained in:
parent
96f5a4b100
commit
415f0cc98c
|
@ -113,7 +113,8 @@ namespace BizHawk.Client.EmuHawk
|
|||
// invalid --> default (doing this here rather than when reading config file to allow for hacked-in values, though I'm not sure if that could do anything at the moment --yoshi)
|
||||
var defaultCore = coreNames[0];
|
||||
Console.WriteLine($"setting preferred core for {groupLabel} etc. to {defaultCore} (was {preferred ?? "null"})");
|
||||
Config.PreferredCores[groupLabel] = preferred = defaultCore;
|
||||
preferred = defaultCore;
|
||||
foreach (var sysID in appliesTo) Config.PreferredCores[sysID] = preferred;
|
||||
}
|
||||
foreach (ToolStripMenuItem entry in ((ToolStripMenuItem) openedSender).DropDownItems) entry.Checked = entry.Text == preferred;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue