From d25328f4828bf5deb7684ec3c4676c541c23c3f1 Mon Sep 17 00:00:00 2001 From: Paul Ferrand Date: Sun, 17 Nov 2019 20:29:39 +0100 Subject: [PATCH] Added dummy functions for pitchwheel, aftertouch and tempo --- sfizz/Synth.cpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/sfizz/Synth.cpp b/sfizz/Synth.cpp index fc79c512..9d298802 100644 --- a/sfizz/Synth.cpp +++ b/sfizz/Synth.cpp @@ -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 { return static_cast(regions.size());