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

Merge branch 'dev_fix_bank_voice_limits' of dronus/MicroDexed into dev

Ok, but I think this will not fix every problem. If the contrain is between 0 and 32 you have the chance to load 33 voices which will cause a problem.
pull/32/head
Holger Wirtz 5 years ago committed by Gitea
commit c9764d60ca
  1. 4
      dexed_sysex.cpp

@ -223,8 +223,8 @@ bool load_sysex(uint8_t b, uint8_t v, uint8_t instance_id)
#if DEBUG
bool found = false;
#endif
v = constrain(v, 1, MAX_VOICES);
b = constrain(b, 1, MAX_BANKS);
v = constrain(v, 0, MAX_VOICES);
b = constrain(b, 0, MAX_BANKS);
if (sd_card_available)
{

Loading…
Cancel
Save