Added dummy functions for pitchwheel, aftertouch and tempo
This commit is contained in:
parent
0516bee5d8
commit
d25328f482
1 changed files with 13 additions and 0 deletions
|
|
@ -449,6 +449,19 @@ void sfz::Synth::cc(int delay, int channel, int ccNumber, uint8_t ccValue) noexc
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void sfz::Synth::pitchWheel(int /* delay */, int /* channel */, int /* pitch */) noexcept
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
void sfz::Synth::aftertouch(int /* delay */, int /* channel */, uint8_t /* aftertouch */) noexcept
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
void sfz::Synth::tempo(int /* delay */, float /* secondsPerQuarter */) noexcept
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
int sfz::Synth::getNumRegions() const noexcept
|
int sfz::Synth::getNumRegions() const noexcept
|
||||||
{
|
{
|
||||||
return static_cast<int>(regions.size());
|
return static_cast<int>(regions.size());
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue