add compatibility flag for vol slide reset on targ

et
This commit is contained in:
tildearrow 2026-01-18 19:04:49 -05:00
parent 344f8d3a22
commit ca19c631d9
4 changed files with 26 additions and 7 deletions

View file

@ -426,6 +426,12 @@ void FurnaceGUI::drawCompatFlags() {
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip(_("when enabled, the slide effect will not be disabled after it reaches its target."));
}
if (ImGui::Checkbox(_("Don't reset volume slides after reaching target"),&e->song.compatFlags.noVolSlideReset)) {
MARK_MODIFIED;
}
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip(_("when enabled, volume slide speeds will not be reset after reaching target or bounds."));
}
if (ImGui::Checkbox(_("Continuous vibrato"),&e->song.compatFlags.continuousVibrato)) {
MARK_MODIFIED;
}