Skip to content

Commit 2dbd089

Browse files
committed
Update this old string that's still getting compiled into plugins. Might have broken some old experimental plugins that are already not compiling.
1 parent 0d5f2ff commit 2dbd089

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

brokenfft/brokenfft.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ class PLUGIN : public AudioEffectX {
123123
}
124124

125125
bool getProductString(char *text) {
126-
strcpy (text, "Super Destroy FX bipolar VST plugin pack");
126+
strcpy (text, PLUGIN_COLLECTION_NAME);
127127
return true;
128128
}
129129

dfx-library/dfxdefines.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ somewhere in the include tree for every file for a DfxPlugin.
5353
#endif
5454

5555
#ifndef PLUGIN_COLLECTION_NAME
56-
#define PLUGIN_COLLECTION_NAME "Super Destroy FX bipolar plugin pack"
56+
#define PLUGIN_COLLECTION_NAME "Super Destroy FX upsetting+delightful plugin pack"
5757
#endif
5858

5959
/* XXX needs workaround for plugin names with white spaces */

firefly/firefly.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ class PLUGIN : public AudioEffectX {
9999
}
100100

101101
bool getProductString(char *text) {
102-
strcpy (text, "Super Destroy FX bipolar VST plugin pack");
102+
strcpy (text, PLUGIN_COLLECTION_NAME);
103103
return true;
104104
}
105105

intercom/intercom.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ bool Intercom::getVendorString(char *text) {
7676

7777
bool Intercom::getProductString(char *text) {
7878
// a string identifying the product name (max 64 char)
79-
strcpy (text, "Super Destroy FX bipolar VST plugin pack");
79+
strcpy (text, PLUGIN_COLLECTION_NAME);
8080
return true;
8181
}
8282

rmsbuddy/rmsbuddy-vst.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ bool RMSbuddy::getVendorString(char *text) {
6565

6666
bool RMSbuddy::getProductString(char *text) {
6767
// a string identifying the product name (max 64 char)
68-
strcpy(text, "Super Destroy FX bipolar VST plugin pack");
68+
strcpy(text, PLUGIN_COLLECTION_NAME);
6969
return true; }
7070

7171
//------------------------------------------------------------------------

stub-plugin/stub.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ struct PLUGIN : public AudioEffectX {
4949
}
5050

5151
bool getProductString(char *text) {
52-
strcpy (text, "Super Destroy FX bipolar VST plugin pack");
52+
strcpy (text, PLUGIN_COLLECTION_NAME);
5353
return true;
5454
}
5555

vardelay/vardelay.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ class PLUGIN : public AudioEffectX {
9595
}
9696

9797
bool getProductString(char *text) {
98-
strcpy (text, "Super Destroy FX bipolar VST plugin pack");
98+
strcpy (text, PLUGIN_COLLECTION_NAME);
9999
return true;
100100
}
101101

0 commit comments

Comments
 (0)