From 3588c3459b5e5489d6a373cf8ce81fa14ee1035b Mon Sep 17 00:00:00 2001 From: Gordon JC Pearce Date: Wed, 11 Sep 2024 20:04:34 +0100 Subject: [PATCH] fix labelling --- plugin/chassis.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/chassis.hpp b/plugin/chassis.hpp index bc4ba41..94df86e 100644 --- a/plugin/chassis.hpp +++ b/plugin/chassis.hpp @@ -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;