Do not require dylibbundler to build
This commit is contained in:
parent
b76d1682ef
commit
3c9a7541a5
3 changed files with 4 additions and 3 deletions
|
|
@ -77,7 +77,7 @@ struct SfizzRange {
|
||||||
case kPidAftertouch:
|
case kPidAftertouch:
|
||||||
return {0.0, 0.0, 1.0};
|
return {0.0, 0.0, 1.0};
|
||||||
case kPidPitchBend:
|
case kPidPitchBend:
|
||||||
return {0.5, 0.0, 1.0};
|
return {0.0, -1.0, 1.0};
|
||||||
default:
|
default:
|
||||||
if (id >= kPidCC0 && id <= kPidCCLast)
|
if (id >= kPidCC0 && id <= kPidCCLast)
|
||||||
return {0.0, 0.0, 1.0};
|
return {0.0, 0.0, 1.0};
|
||||||
|
|
|
||||||
|
|
@ -386,7 +386,7 @@ void SfizzVstProcessor::playOrderedParameter(int32 sampleOffset, Vst::ParamID id
|
||||||
synth.hdAftertouch(sampleOffset, value);
|
synth.hdAftertouch(sampleOffset, value);
|
||||||
break;
|
break;
|
||||||
case kPidPitchBend:
|
case kPidPitchBend:
|
||||||
synth.hdPitchWheel(sampleOffset, value);
|
synth.hdPitchWheel(sampleOffset, range.denormalize(value));
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
if (id >= kPidCC0 && id <= kPidCCLast) {
|
if (id >= kPidCC0 && id <= kPidCCLast) {
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,8 @@ fi
|
||||||
|
|
||||||
set -x
|
set -x
|
||||||
|
|
||||||
brew install dylibbundler
|
# -- Install if necessary; only if using external libraries (eg. jack, sndfile)
|
||||||
|
#brew install dylibbundler
|
||||||
|
|
||||||
cd ~; npm install appdmg; cd -
|
cd ~; npm install appdmg; cd -
|
||||||
~/node_modules/appdmg/bin/appdmg.js --version
|
~/node_modules/appdmg/bin/appdmg.js --version
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue