Skip to content
This repository has been archived by the owner on Sep 16, 2021. It is now read-only.

Commit

Permalink
fix VST instrument and effect having the same plugin ID for #146
Browse files Browse the repository at this point in the history
  • Loading branch information
cpdt committed Nov 8, 2018
1 parent faa5d0a commit abd3d92
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion editor/backend/vst2/AxiomVstPlugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,11 @@ AxiomVstPlugin::AxiomVstPlugin(audioMasterCallback audioMaster)
: AudioEffectX(audioMaster, 1, 255), appRef(application.get()), backend(this), editor(&*appRef, &backend) {
#ifdef AXIOM_VST2_IS_SYNTH
isSynth();
setUniqueID(0x41584F53);
#else
setUniqueID(0x41584F45);
#endif

setUniqueID(0x41584F4D); // 'AXOM'
programsAreChunks();
canProcessReplacing();

Expand Down

0 comments on commit abd3d92

Please sign in to comment.