@ -1624,12 +1624,12 @@ void UI_func_transpose(uint8_t param)
}
}
}
}
MicroDexed [ instance_id ] - > notesOff ( ) ;
MicroDexed [ instance_id ] - > data [ DEXED_VOICE_OFFSET + DEXED_TRANSPOSE ] = configuration . dexed [ instance_id ] . transpose ;
MicroDexed [ instance_id ] - > data [ DEXED_VOICE_OFFSET + DEXED_TRANSPOSE ] = configuration . dexed [ instance_id ] . transpose ;
MicroDexed [ instance_id ] - > notesOff ( ) ;
}
}
lcd . setCursor ( 0 , 1 ) ;
lcd . setCursor ( 0 , 1 ) ;
lcd_display_int ( configuration . dexed [ instance_id ] . transpose , 2 , true , true , fals e ) ;
lcd_display_int ( configuration . dexed [ instance_id ] . transpose - 24 , 1 , false , true , true ) ;
}
}
if ( LCDML . FUNC_close ( ) ) // ****** STABLE END *********
if ( LCDML . FUNC_close ( ) ) // ****** STABLE END *********
@ -1810,6 +1810,7 @@ void UI_func_panorama(uint8_t param)
{
{
lcd . setCursor ( 0 , 1 ) ;
lcd . setCursor ( 0 , 1 ) ;
lcd . print ( F ( " MONO-disabled " ) ) ;
lcd . print ( F ( " MONO-disabled " ) ) ;
return ;
}
}
}
}
@ -1837,7 +1838,7 @@ void UI_func_panorama(uint8_t param)
if ( configuration . mono = = 0 )
if ( configuration . mono = = 0 )
{
{
lcd . setCursor ( 0 , 1 ) ;
lcd . setCursor ( 0 , 1 ) ;
lcd_display_int ( configuration . dexed [ instance_id ] . pan - 20 , 2 , false , true , true ) ;
lcd_display_int ( configuration . dexed [ instance_id ] . pan - 20 , 1 , false , true , true ) ;
mono2stereo [ instance_id ] - > panorama ( mapfloat ( configuration . dexed [ instance_id ] . pan , PANORAMA_MIN , PANORAMA_MAX , - 1.0 , 1.0 ) ) ;
mono2stereo [ instance_id ] - > panorama ( mapfloat ( configuration . dexed [ instance_id ] . pan , PANORAMA_MIN , PANORAMA_MAX , - 1.0 , 1.0 ) ) ;
}
}
}
}