Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/dexed/commit/04c65a5da0de3f0265687a6ff1036b77ccf0b52d?style=unified&whitespace=ignore-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
7 additions and
5 deletions
src/dexed.cpp
src/dexed.h
@ -88,13 +88,12 @@ Dexed::~Dexed()
void Dexed : : set_params ( void )
{
/*
// Dexed-Unisono
if ( getEngineTyp e( ) ! = int ( * p ( p_unisono ) ) )
if ( isMonoMod e( ) ! = int ( * p ( p_unisono ) ) )
{
panic ( ) ;
setMonoMode ( int ( * p ( p_unisono ) ) ) ;
} */
}
// Dexed-Engine
if ( getEngineType ( ) ! = int ( * p ( p_engine ) ) )
@ -628,6 +627,10 @@ void Dexed::setEngineType(int tp) {
engineType = tp ;
}
bool Dexed : : isMonoMode ( void ) {
return monoMode ;
}
void Dexed : : setMonoMode ( bool mode ) {
monoMode = mode ;
}
@ -78,11 +78,10 @@ class Dexed : public lvtk::Synth<DexedVoice, Dexed>
void run ( uint32_t sample_count ) ;
int getEngineType ( ) ;
void setEngineType ( int rs ) ;
bool isMonoMode ( void ) ;
void setMonoMode ( bool mode ) ;
void set_params ( void ) ;
void GetSamples ( int n_samples , float * buffer ) ;
//bool isMonoMode();
//void setMonoMode(bool mode);
uint8_t data [ 161 ] ;
Controllers controllers ;