diff --git a/vst3/vst3entry.cpp b/vst3/vst3entry.cpp index db6b167..812142a 100644 --- a/vst3/vst3entry.cpp +++ b/vst3/vst3entry.cpp @@ -29,7 +29,7 @@ BEGIN_FACTORY_DEF (VENDOR, kVstAudioEffectClass, // the component category (do not changed this) stringPluginName, // here the Plug-in name (to be changed) Vst::kDistributable, // means that component and controller could be distributed on different computers - (PLUGIN_CLASS::isInstrument ? "Instrument" : "Fx"), // Subcategory derived from plugin class + (PLUGIN_CLASS::isInstrument ? Vst::PlugType::kInstrument : Vst::PlugType::kFx), FULL_VERSION_STR, // Plug-in version (to be changed) kVstVersionString, // the VST 3 SDK version (do not changed this, use always this define) VST3Processor::createInstance) // function pointer called when this component should be instantiated @@ -47,4 +47,4 @@ BEGIN_FACTORY_DEF (VENDOR, //----for others Plug-ins contained in this factory, put like for the first Plug-in different DEF_CLASS2--- -END_FACTORY \ No newline at end of file +END_FACTORY diff --git a/vst3/vst3version.h b/vst3/vst3version.h index 4c53cf6..df1d125 100644 --- a/vst3/vst3version.h +++ b/vst3/vst3version.h @@ -11,6 +11,6 @@ #else #define stringFileDescription PLUGIN_NAME" VST3" #endif -#define stringCompanyName "Steinberg Media Technologies GmbH\0" -#define stringLegalCopyright "Copyright(c) 2022 Steinberg Media Technologies GmbH." +#define stringCompanyName VENDOR +#define stringLegalCopyright "Copyright(c) " VENDOR #define stringLegalTrademarks "VST is a trademark of Steinberg Media Technologies GmbH"