GUI: add presets for C64 PCM and Defle MSX2

This commit is contained in:
tildearrow 2025-03-22 20:44:19 -05:00
parent 24b2440daf
commit 9b3da929bf

View file

@ -421,6 +421,12 @@ void FurnaceGUI::initSystemPresets() {
},
"tickRate=50.1245421"
);
SUB_ENTRY(
_("Commodore 64 (6581 SID) with software PCM"), {
CH(DIV_SYSTEM_C64_PCM, 1.0f, 0, "clockSel=1")
},
"tickRate=50.1245421"
);
ENTRY(
_("Amiga"), {
CH(DIV_SYSTEM_AMIGA, 1.0f, 0, "clockSel=1")
@ -3746,6 +3752,12 @@ void FurnaceGUI::initSystemPresets() {
CH(DIV_SYSTEM_YM2610_EXT, 1.0f, 0, "")
}
);
ENTRY(
_("MSX + SCC"), {
CH(DIV_SYSTEM_AY8910, 1.0f, 0, "chipType=1"),
CH(DIV_SYSTEM_SCC, 1.0f, 0, "")
}
);
CATEGORY_END;
}