Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/MicroDexed/commit/d44120476fe359472dd2b4194070c91bb4ec9386?style=split&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
3 additions and
3 deletions
MicroDexed.ino
config.h
@ -350,7 +350,7 @@ void handleNoteOn(byte inChannel, byte inNumber, byte inVelocity)
{
{
if ( checkMidiChannel ( inChannel ) )
if ( checkMidiChannel ( inChannel ) )
{
{
dexed - > keydown ( inNumber , inVelocity ) ;
dexed - > keydown ( inNumber + 12 , inVelocity ) ;
}
}
}
}
@ -358,7 +358,7 @@ void handleNoteOff(byte inChannel, byte inNumber, byte inVelocity)
{
{
if ( checkMidiChannel ( inChannel ) )
if ( checkMidiChannel ( inChannel ) )
{
{
dexed - > keyup ( inNumber ) ;
dexed - > keyup ( inNumber + 12 ) ;
}
}
}
}
@ -59,7 +59,7 @@
//*************************************************************************************************
//*************************************************************************************************
//* DEXED AND EFECTS SETTINGS
//* DEXED AND EFECTS SETTINGS
//*************************************************************************************************
//*************************************************************************************************
# define DEXED_ENGINE DEXED_ENGINE_MODERN # DEXED_ENGINE_MARKI // DEXED_ENGINE_OPL
# define DEXED_ENGINE DEXED_ENGINE_MODERN // DEXED_ENGINE_MARKI // DEXED_ENGINE_OPL
// EFFECTS
// EFFECTS
# define FILTER_MAX_FREQ 10000
# define FILTER_MAX_FREQ 10000