summaryrefslogtreecommitdiff
path: root/vst
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2011-10-18 15:35:41 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2011-10-18 15:35:41 +0200
commit3ba2a2a0690a3150ceb323cd670c0a4167d7edee (patch)
treeda3b9e1b6f499cb3f513162c00896b2566d42bea /vst
parent1a6ae8774f05ee5fc4ddb0d6360df999f45a406b (diff)
Revert ids.
Diffstat (limited to 'vst')
-rw-r--r--vst/drumgizmo_vst.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/vst/drumgizmo_vst.cc b/vst/drumgizmo_vst.cc
index 33c0a9d..730a67b 100644
--- a/vst/drumgizmo_vst.cc
+++ b/vst/drumgizmo_vst.cc
@@ -58,7 +58,7 @@ DrumGizmoVst::DrumGizmoVst(audioMasterCallback audioMaster)
setNumOutputs(NUM_OUTPUTS);
canProcessReplacing();
isSynth();
- char id[] = "BLOP"; // Four bytes typecasted into an unsigned integer
+ char id[] = "DGV1"; // Four bytes typecasted into an unsigned integer
setUniqueID(*(unsigned int*)id);
}
@@ -208,19 +208,19 @@ bool DrumGizmoVst::getProgramNameIndexed(VstInt32 category, VstInt32 index,
bool DrumGizmoVst::getEffectName(char* name)
{
- vst_strncpy(name, "DrumGizmoSKU", kVstMaxEffectNameLen);
+ vst_strncpy(name, "DrumGizmo", kVstMaxEffectNameLen);
return true;
}
bool DrumGizmoVst::getVendorString(char* text)
{
- vst_strncpy(text, "Aasimon.org-yeah", kVstMaxVendorStrLen);
+ vst_strncpy(text, "Aasimon.org", kVstMaxVendorStrLen);
return true;
}
bool DrumGizmoVst::getProductString(char* text)
{
- vst_strncpy(text, "Vst Synthdims", kVstMaxProductStrLen);
+ vst_strncpy(text, "Vst Synth", kVstMaxProductStrLen);
return true;
}