Merge branch 'master' of https://github.com/tildearrow/furnace into nmk112

This commit is contained in:
cam900 2024-02-03 15:04:43 +09:00
commit 3922770e8f
166 changed files with 4829 additions and 2054 deletions

View file

@ -2280,6 +2280,23 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl
}
break;
}
case DIV_SYSTEM_SFX_BEEPER_QUADTONE: {
bool sysPal=flags.getInt("clockSel",0);
bool noHiss=flags.getBool("noHiss",false);
if (ImGui::Checkbox("PAL",&sysPal)) {
altered=true;
}
if (ImGui::Checkbox("Disable hissing",&noHiss)) {
altered=true;
}
if (altered) {
e->lockSave([&]() {
flags.set("clockSel",(int)sysPal);
flags.set("noHiss",noHiss);
});
}
break;
}
case DIV_SYSTEM_SWAN:
case DIV_SYSTEM_BUBSYS_WSG:
case DIV_SYSTEM_PET: