Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/dexed/commit/d43285d8a7417135f8306b827681ba27d2e5de9c?style=unified&whitespace=ignore-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

Perhaps THIS is the fix???

pull/1/head
Holger Wirtz 9 years ago
parent fa55ed4ab6
commit d43285d8a7
  1. 5
      src/dexed.cpp

@ -93,6 +93,7 @@ void Dexed::set_params(void)
fx.uiReso=*p(p_resonance);
refreshVoice=true;
}
fx.uiGain=1.0;
if(fx.uiGain!=*p(p_output))
{
fx.uiGain=*p(p_output);
@ -663,6 +664,10 @@ void Dexed::init(double rate)
Env::init_sr(rate);
fx.init(rate);
fx.uiCutoff=1.0;
fx.uiReso=0.0;
fx.uiGain=1.0;
for (uint8_t note = 0; note < MAX_ACTIVE_NOTES; ++note) {
voices[note].dx7_note = new Dx7Note;
voices[note].keydown = false;

Loading…
Cancel
Save