From 13e7fc83cd6e81e72462129585f55c4a0353a5d4 Mon Sep 17 00:00:00 2001 From: hogliux Date: Wed, 3 May 2017 12:08:46 +0100 Subject: [PATCH] Fixed a typo in the VST3 wrapper --- modules/juce_audio_plugin_client/VST3/juce_VST3_Wrapper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_audio_plugin_client/VST3/juce_VST3_Wrapper.cpp b/modules/juce_audio_plugin_client/VST3/juce_VST3_Wrapper.cpp index b07ecd44b1..333af24d11 100644 --- a/modules/juce_audio_plugin_client/VST3/juce_VST3_Wrapper.cpp +++ b/modules/juce_audio_plugin_client/VST3/juce_VST3_Wrapper.cpp @@ -1483,7 +1483,7 @@ public: zerostruct (bank); bank.magic1 = (int32) htonl ('CcnK'); bank.size = (int32) htonl (bankBlockSize - 8 + (unsigned int) mem.getSize()); - bank.magic1 = (int32) htonl ('FBCh'); + bank.magic2 = (int32) htonl ('FBCh'); bank.version1 = (int32) htonl (2); bank.fxID = (int32) htonl (JucePlugin_VSTUniqueID); bank.version2 = (int32) htonl (JucePlugin_VersionCode);