Update minidexed.cpp

pull/206/head
arsamus 3 years ago committed by GitHub
parent cca886de79
commit 401ea2f818
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 12
      src/minidexed.cpp

@ -479,8 +479,8 @@ void CMiniDexed::SetPortaMode (uint8_t nValue, unsigned nTG)
m_nPortamentoMode[nTG] = nValue; m_nPortamentoMode[nTG] = nValue;
assert (m_pTG[nTG]); assert (m_pTG[nTG]);
// m_pTG[nTG]->setPortamentoMode (nValue); // uncoment and comment following in news version of dexed m_pTG[nTG]->setPortamentoMode (nValue); // uncoment and comment following in news version of dexed
m_pTG[nTG]->setPortamentoMode (nValue, m_nPortamentoGlissando[nTG], m_nPortamentoTime[nTG]); // Compile error due to new implementation in Dexed, uncoment above and coment this //m_pTG[nTG]->setPortamentoMode (nValue, m_nPortamentoGlissando[nTG], m_nPortamentoTime[nTG]); // Compile error due to new implementation in Dexed, uncoment above and coment this
m_UI.ParameterChanged (); m_UI.ParameterChanged ();
} }
@ -493,8 +493,8 @@ void CMiniDexed::SetPortaGlissando (uint8_t nValue, unsigned nTG)
m_nPortamentoGlissando[nTG] = nValue; m_nPortamentoGlissando[nTG] = nValue;
assert (m_pTG[nTG]); assert (m_pTG[nTG]);
// m_pTG[nTG]->setPortamentoGlissando (nValue); // uncoment and comment following in news version of dexed m_pTG[nTG]->setPortamentoGlissando (nValue); // uncoment and comment following in news version of dexed
m_pTG[nTG]->setPortamentoMode (m_nPortamentoMode[nTG], nValue, m_nPortamentoTime[nTG]); // Compile error due to new implementation in Dexed, uncoment above and coment this //m_pTG[nTG]->setPortamentoMode (m_nPortamentoMode[nTG], nValue, m_nPortamentoTime[nTG]); // Compile error due to new implementation in Dexed, uncoment above and coment this
m_UI.ParameterChanged (); m_UI.ParameterChanged ();
} }
@ -507,8 +507,8 @@ void CMiniDexed::SetPortaTime (uint8_t nValue, unsigned nTG)
m_nPortamentoTime[nTG] = nValue; m_nPortamentoTime[nTG] = nValue;
assert (m_pTG[nTG]); assert (m_pTG[nTG]);
// m_pTG[nTG]->setPortamentoTime (nValue); // uncoment and comment following in news version of dexed m_pTG[nTG]->setPortamentoTime (nValue); // uncoment and comment following in news version of dexed
m_pTG[nTG]->setPortamentoMode (m_nPortamentoMode[nTG], m_nPortamentoGlissando[nTG], nValue); // Compile error due to new implementation in Dexed, uncoment above and coment this //m_pTG[nTG]->setPortamentoMode (m_nPortamentoMode[nTG], m_nPortamentoGlissando[nTG], nValue); // Compile error due to new implementation in Dexed, uncoment above and coment this
m_UI.ParameterChanged (); m_UI.ParameterChanged ();
} }

Loading…
Cancel
Save