diff --git a/plugins/vst/SfizzVstParameters.h b/plugins/vst/SfizzVstParameters.h index ee60b33b..1b1eeae9 100644 --- a/plugins/vst/SfizzVstParameters.h +++ b/plugins/vst/SfizzVstParameters.h @@ -77,7 +77,7 @@ struct SfizzRange { case kPidAftertouch: return {0.0, 0.0, 1.0}; case kPidPitchBend: - return {0.5, 0.0, 1.0}; + return {0.0, -1.0, 1.0}; default: if (id >= kPidCC0 && id <= kPidCCLast) return {0.0, 0.0, 1.0}; diff --git a/plugins/vst/SfizzVstProcessor.cpp b/plugins/vst/SfizzVstProcessor.cpp index 5784bb63..d3b7156f 100644 --- a/plugins/vst/SfizzVstProcessor.cpp +++ b/plugins/vst/SfizzVstProcessor.cpp @@ -386,7 +386,7 @@ void SfizzVstProcessor::playOrderedParameter(int32 sampleOffset, Vst::ParamID id synth.hdAftertouch(sampleOffset, value); break; case kPidPitchBend: - synth.hdPitchWheel(sampleOffset, value); + synth.hdPitchWheel(sampleOffset, range.denormalize(value)); break; default: if (id >= kPidCC0 && id <= kPidCCLast) { diff --git a/scripts/appveyor/install.sh b/scripts/appveyor/install.sh index d597d464..308db4bf 100644 --- a/scripts/appveyor/install.sh +++ b/scripts/appveyor/install.sh @@ -40,7 +40,8 @@ fi set -x -brew install dylibbundler +# -- Install if necessary; only if using external libraries (eg. jack, sndfile) +#brew install dylibbundler cd ~; npm install appdmg; cd - ~/node_modules/appdmg/bin/appdmg.js --version