|
|
@ -88,13 +88,12 @@ Dexed::~Dexed() |
|
|
|
|
|
|
|
|
|
|
|
void Dexed::set_params(void) |
|
|
|
void Dexed::set_params(void) |
|
|
|
{ |
|
|
|
{ |
|
|
|
/*
|
|
|
|
|
|
|
|
// Dexed-Unisono
|
|
|
|
// Dexed-Unisono
|
|
|
|
if(getEngineType()!=int(*p(p_unisono))) |
|
|
|
if(isMonoMode()!=int(*p(p_unisono))) |
|
|
|
{ |
|
|
|
{ |
|
|
|
panic(); |
|
|
|
panic(); |
|
|
|
setMonoMode(int(*p(p_unisono))); |
|
|
|
setMonoMode(int(*p(p_unisono))); |
|
|
|
} */ |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// Dexed-Engine
|
|
|
|
// Dexed-Engine
|
|
|
|
if(getEngineType()!=int(*p(p_engine))) |
|
|
|
if(getEngineType()!=int(*p(p_engine))) |
|
|
@ -628,6 +627,10 @@ void Dexed::setEngineType(int tp) { |
|
|
|
engineType = tp; |
|
|
|
engineType = tp; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool Dexed::isMonoMode(void) { |
|
|
|
|
|
|
|
return monoMode; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void Dexed::setMonoMode(bool mode) { |
|
|
|
void Dexed::setMonoMode(bool mode) { |
|
|
|
monoMode = mode; |
|
|
|
monoMode = mode; |
|
|
|
} |
|
|
|
} |
|
|
|