fix labelling

This commit is contained in:
Gordon JC Pearce 2024-09-11 20:04:34 +01:00
parent 561acbc0fb
commit 3588c3459b

View File

@ -71,12 +71,12 @@ class Chassis : public Plugin {
protected:
const char *getLabel() const override { return "chassis"; }
const char *getDescription() const override {
return "MIDIVerb emulation, a tribute to Keith Barr";
return "simple polysynth";
}
const char *getMaker() const override { return "Gordonjcp"; }
const char *getLicense() const override { return "ISC"; }
uint32_t getVersion() const override { return d_version(1, 0, 0); }
int64_t getUniqueId() const override { return d_cconst('P', 'f', 'a', 'u'); }
int64_t getUniqueId() const override { return d_cconst('P', 'h', 'e', 'r'); }
// Initialisation
void initAudioPort(bool input, uint32_t index, AudioPort &port) override;