Disable reversed playback checkbox when using sample map

Clamp per-channel OSC output, Reduce warning
This commit is contained in:
cam900 2022-05-02 21:19:10 +09:00
parent e246697928
commit 8283d46e7d
2 changed files with 6 additions and 4 deletions

View file

@ -2499,7 +2499,9 @@ void FurnaceGUI::drawInsEdit() {
}
ImGui::EndCombo();
}
ImGui::BeginDisabled(ins->amiga.useNoteMap||ins->amiga.useWave);
P(ImGui::Checkbox("Reversed playback",&ins->amiga.reversed));
ImGui::EndDisabled();
P(ImGui::Checkbox("Use wavetable (Amiga only)",&ins->amiga.useWave));
if (ins->amiga.useWave) {
int len=ins->amiga.waveLen+1;