The old toccata_mixer option enabled the board but did not carry the
current per-board mixer setting. Map the legacy key onto the Toccata
ROM config bit so older configurations preserve the same mixer state.
if (cfgfile_yesno(option, value, _T("toccata_mixer"), &dummybool))
{
if (dummybool) {
+ int idx = 0;
addbcromtype(p, ROMTYPE_TOCCATA, true, NULL, 0);
+ struct boardromconfig *brc = get_device_rom(p, ROMTYPE_TOCCATA, 0, &idx);
+ if (brc) {
+ brc->roms[idx].device_settings |= 1;
+ }
}
return 1;
}