When core preference changes, set for all sysIDs in group

see 823ce4f78
This commit is contained in:
YoshiRulz 2024-06-11 14:07:23 +10:00
parent 96f5a4b100
commit 415f0cc98c
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 2 additions and 1 deletions

View File

@ -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;
};