add compatibility flag for arp phase reset on new note

This commit is contained in:
DevEd 2023-09-10 17:41:16 -04:00
parent 85c5cffde8
commit a2c9ec78d3
3 changed files with 10 additions and 2 deletions

View file

@ -328,6 +328,10 @@ void FurnaceGUI::drawCompatFlags() {
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip("when enabled, the pitch macro of an instrument is in frequency/period space.");
}
ImGui::Checkbox("Reset arpeggio phase on new note",&e->song.resetArpPhaseOnNewNote);
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip("when enabled, the arpeggio phase is reset on a new note."); // TODO: Better description
}
ImGui::EndTabItem();
}
ImGui::EndTabBar();