Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/MicroDexed/commit/3ad706aaf431b73f6f339b90bf77b8a325c9ea78?style=split&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
2 additions and
1 deletions
MicroDexed.ino
UI.hpp
@ -2052,8 +2052,10 @@ void set_fx_params(void)
freeverb . damping ( mapfloat ( configuration . fx . reverb_damping , REVERB_DAMPING_MIN , REVERB_DAMPING_MAX , 0.0 , 1.0 ) ) ;
freeverb . damping ( mapfloat ( configuration . fx . reverb_damping , REVERB_DAMPING_MIN , REVERB_DAMPING_MAX , 0.0 , 1.0 ) ) ;
# endif
# endif
# ifdef NUM_DRUMS
reverb_mixer_r . gain ( 4 , 1.0 ) ;
reverb_mixer_r . gain ( 4 , 1.0 ) ;
reverb_mixer_l . gain ( 4 , 1.0 ) ;
reverb_mixer_l . gain ( 4 , 1.0 ) ;
# endif
master_mixer_r . gain ( 3 , pseudo_log_curve ( mapfloat ( configuration . fx . reverb_level , REVERB_LEVEL_MIN , REVERB_LEVEL_MAX , 0.0 , 1.0 ) ) ) ;
master_mixer_r . gain ( 3 , pseudo_log_curve ( mapfloat ( configuration . fx . reverb_level , REVERB_LEVEL_MIN , REVERB_LEVEL_MAX , 0.0 , 1.0 ) ) ) ;
master_mixer_l . gain ( 3 , pseudo_log_curve ( mapfloat ( configuration . fx . reverb_level , REVERB_LEVEL_MIN , REVERB_LEVEL_MAX , 0.0 , 1.0 ) ) ) ;
master_mixer_l . gain ( 3 , pseudo_log_curve ( mapfloat ( configuration . fx . reverb_level , REVERB_LEVEL_MIN , REVERB_LEVEL_MAX , 0.0 , 1.0 ) ) ) ;
@ -39,7 +39,6 @@
# include "synth_dexed.h"
# include "synth_dexed.h"
# include <LCDMenuLib2.h>
# include <LCDMenuLib2.h>
//#include <Encoder.h>
# include <MD_REncoder.h>
# include <MD_REncoder.h>
# define _LCDML_DISP_cols LCD_cols
# define _LCDML_DISP_cols LCD_cols