diff --git a/plugins/vst/SfizzVstEditor.cpp b/plugins/vst/SfizzVstEditor.cpp index 19472000..14a2fd21 100644 --- a/plugins/vst/SfizzVstEditor.cpp +++ b/plugins/vst/SfizzVstEditor.cpp @@ -244,11 +244,6 @@ void PLUGIN_API SfizzVstEditor::update(FUnknown* changedUnknown, int32 message) if (PlayStateUpdate* update = FCast(changedUnknown)) { const SfizzPlayState playState = update->getState(); - uiReceiveValue(EditId::UINumCurves, playState.curves); - uiReceiveValue(EditId::UINumMasters, playState.masters); - uiReceiveValue(EditId::UINumGroups, playState.groups); - uiReceiveValue(EditId::UINumRegions, playState.regions); - uiReceiveValue(EditId::UINumPreloadedSamples, playState.preloadedSamples); uiReceiveValue(EditId::UINumActiveVoices, playState.activeVoices); return; } diff --git a/plugins/vst/SfizzVstProcessor.cpp b/plugins/vst/SfizzVstProcessor.cpp index 1bc97468..b782bd58 100644 --- a/plugins/vst/SfizzVstProcessor.cpp +++ b/plugins/vst/SfizzVstProcessor.cpp @@ -295,11 +295,6 @@ tresult PLUGIN_API SfizzVstProcessor::process(Vst::ProcessData& data) if (_playStateChangeCounter > _playStateChangePeriod) { _playStateChangeCounter %= _playStateChangePeriod; SfizzPlayState playState {}; - playState.curves = synth.getNumCurves(); - playState.masters = synth.getNumMasters(); - playState.groups = synth.getNumGroups(); - playState.regions = synth.getNumRegions(); - playState.preloadedSamples = synth.getNumPreloadedSamples(); playState.activeVoices = synth.getNumActiveVoices(); if (writeWorkerMessage(kMsgIdNotifyPlayState, &playState, sizeof(playState))) _semaToWorker.post(); diff --git a/plugins/vst/SfizzVstState.h b/plugins/vst/SfizzVstState.h index de35acb8..dbae0a3e 100644 --- a/plugins/vst/SfizzVstState.h +++ b/plugins/vst/SfizzVstState.h @@ -31,10 +31,5 @@ public: }; struct SfizzPlayState { - uint32 curves; - uint32 masters; - uint32 groups; - uint32 regions; - uint32 preloadedSamples; uint32 activeVoices; };