Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/MicroDexed/commit/54920843d241dc17490e691a85ba1ab2f04624f0?style=unified&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
2 additions and
2 deletions
MicroDexed.ino
UI_FX.h
@ -553,7 +553,7 @@ void setup()
for ( uint8_t instance_id = 0 ; instance_id < NUM_DEXED ; instance_id + + )
{
// load default SYSEX data
load_sd_voice ( configuration . performance . bank [ instance_id ] , configuration . performance . voice [ instance_id ] , instance_id ) ;
//load_sd_voice(configuration.performance.bank[instance_id], configuration.performance.voice[instance_id], instance_id);
memset ( g_voice_name [ instance_id ] , 0 , VOICE_NAME_LEN ) ;
memset ( g_bank_name [ instance_id ] , 0 , BANK_NAME_LEN ) ;
memset ( receive_bank_filename , 0 , FILENAME_LEN ) ;
@ -103,7 +103,7 @@ LCDML_add(69, LCDML_0_1, 8, "Save Voice", UI_func_save_voice);
LCDML_add ( 70 , LCDML_0 , 3 , " Load/Save " , NULL ) ;
LCDML_add ( 71 , LCDML_0_3 , 1 , " Load Perf. " , UI_func_load_performance ) ;
LCDML_add ( 72 , LCDML_0_3 , 2 , " Save Perf. " , UI_func_save_performance ) ;
LCDML_add ( 73 , LCDML_0_2 , 3 , " Name Perf. " , UI_func_set_performance_name ) ;
LCDML_add ( 73 , LCDML_0_3 , 3 , " Name Perf. " , UI_func_set_performance_name ) ;
LCDML_add ( 74 , LCDML_0_3 , 4 , " MIDI " , NULL ) ;
LCDML_add ( 75 , LCDML_0_3_4 , 1 , " MIDI Recv Bank " , UI_func_sysex_receive_bank ) ;
LCDML_add ( 76 , LCDML_0_3_4 , 2 , " MIDI Snd Bank " , UI_func_sysex_send_bank ) ;