Compare commits

..

No commits in common. "58ee2d4ca882426ab7ce043c364a5cdc197be4f3" and "40774471029000003829dd67c18dfa4541a7997a" have entirely different histories.

2 changed files with 2 additions and 8 deletions

View File

@ -34,8 +34,7 @@ include ../dpf/Makefile.plugins.mk
SKIP_NATIVE_AUDIO_FALLBACK = true
# omitting LV2 for the moment until I figure out cross-compiling
TARGETS += jack vst2 vst3 clap
TARGETS += jack lv2_sep vst3 clap
all: $(TARGETS)

View File

@ -258,17 +258,15 @@ void DistrhoUIPeacock::parameterChanged(uint32_t index, float value) {
sw1 &= 0xf8; // mask
if (value > 2) value = 2;
sw1 |= (1 << (int)value);
repaint();
xBtn16ft->repaint(); // will repaint all the panel
break;
case pSqr:
sw1 &= 0xf7;
sw1 |= ((value >= 0.5)) << 3;
repaint();
break;
case pSaw:
sw1 &= 0xef;
sw1 |= (value > 0.5) << 4;
repaint();
break;
case pChorusMode:
@ -285,8 +283,6 @@ void DistrhoUIPeacock::parameterChanged(uint32_t index, float value) {
sw1 |= 0x00;
break;
}
repaint();
break;
}
}
@ -344,7 +340,6 @@ void DistrhoUIPeacock::imageButtonClicked(ImageButton* imgBtn, int) {
default:
break;
}
repaint();
}
void DistrhoUIPeacock::onDisplay() {