fix broken DAC mode

adds new compat flag
This commit is contained in:
tildearrow 2022-03-11 22:11:33 -05:00
parent b73591970d
commit 2a0aa19b2b
6 changed files with 36 additions and 6 deletions

View file

@ -2115,6 +2115,10 @@ void FurnaceGUI::drawCompatFlags() {
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip("when enabled, vibrato will not be reset on a new note.");
}
ImGui::Checkbox("Broken DAC mode",&e->song.brokenDACMode);
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip("when enabled, the DAC in YM2612 will be disabled if there isn't any sample playing.");
}
ImGui::Text("Loop modality:");
if (ImGui::RadioButton("Reset channels",e->song.loopModality==0)) {