aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/MacVST/DeRez/source/DeRez.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/MacVST/DeRez/source/DeRez.cpp')
-rwxr-xr-xplugins/MacVST/DeRez/source/DeRez.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/MacVST/DeRez/source/DeRez.cpp b/plugins/MacVST/DeRez/source/DeRez.cpp
index 3bf36eb..404127a 100755
--- a/plugins/MacVST/DeRez/source/DeRez.cpp
+++ b/plugins/MacVST/DeRez/source/DeRez.cpp
@@ -99,8 +99,8 @@ float DeRez::getParameter(VstInt32 index) {
void DeRez::getParameterName(VstInt32 index, char *text) {
switch (index) {
- case kParamA: vst_strncpy (text, "Freq", kVstMaxParamStrLen); break;
- case kParamB: vst_strncpy (text, "Reso", kVstMaxParamStrLen); break;
+ case kParamA: vst_strncpy (text, "Rate", kVstMaxParamStrLen); break;
+ case kParamB: vst_strncpy (text, "Rez", kVstMaxParamStrLen); break;
default: break; // unknown parameter, shouldn't happen!
} //this is our labels for displaying in the VST host
}