mirror of https://github.com/AxioDL/amuse.git
Change default volume to 80% to fill newfound headroom
This commit is contained in:
parent
3427515960
commit
fe78a675d7
|
@ -132,7 +132,7 @@ struct AppCallback : boo::IApplicationCallback
|
||||||
int8_t m_lastChanProg = -1;
|
int8_t m_lastChanProg = -1;
|
||||||
|
|
||||||
/* Control state */
|
/* Control state */
|
||||||
float m_volume = 0.5f;
|
float m_volume = 0.8f;
|
||||||
float m_modulation = 0.f;
|
float m_modulation = 0.f;
|
||||||
float m_pitchBend = 0.f;
|
float m_pitchBend = 0.f;
|
||||||
bool m_updateDisp = false;
|
bool m_updateDisp = false;
|
||||||
|
|
|
@ -356,6 +356,15 @@ void Sequencer::setCtrlValue(uint8_t chan, uint8_t ctrl, int8_t val)
|
||||||
if (chan > 15)
|
if (chan > 15)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
if (ctrl == 0x66)
|
||||||
|
{
|
||||||
|
printf("Loop Start\n");
|
||||||
|
}
|
||||||
|
else if (ctrl == 0x67)
|
||||||
|
{
|
||||||
|
printf("Loop End\n");
|
||||||
|
}
|
||||||
|
|
||||||
if (!m_chanStates[chan])
|
if (!m_chanStates[chan])
|
||||||
m_chanStates[chan].emplace(*this, chan);
|
m_chanStates[chan].emplace(*this, chan);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue