From 7b1e00ec30ed21eba445153c4183e13a973645f9 Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Mon, 5 Mar 2018 06:24:34 -0500 Subject: [PATCH] Add arpeggiator tag --- include/tags.hpp | 3 ++- src/tags.cpp | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/include/tags.hpp b/include/tags.hpp index a4e52165..e8564f5e 100644 --- a/include/tags.hpp +++ b/include/tags.hpp @@ -11,11 +11,12 @@ To see comments, turn word wrap on. I'm using inline comments so I can automatic enum ModelTag { NO_TAG, // Don't use this in `Model::create(...)`. Instead, just omit the tags entirely. AMPLIFIER_TAG, + ARPEGGIATOR_TAG, ATTENUATOR_TAG, BLANK_TAG, CHORUS_TAG, - CLOCK_TAG, CLOCK_MODULATOR_TAG, // Clock dividers, multipliers, etc. + CLOCK_TAG, COMPRESSOR_TAG, CONTROLLER_TAG, // Use only if the artist "performs" with this module. Knobs are not sufficient. Examples: on-screen keyboard, XY pad. DELAY_TAG, diff --git a/src/tags.cpp b/src/tags.cpp index 98d4381e..ea37baea 100644 --- a/src/tags.cpp +++ b/src/tags.cpp @@ -1,4 +1,4 @@ -#include "tags.hpp" +v#include "tags.hpp" namespace rack { @@ -10,6 +10,7 @@ std::string gTagNames[NUM_TAGS]; void tagsInit() { gTagNames[AMPLIFIER_TAG] = "Amplifier/VCA"; gTagNames[ATTENUATOR_TAG] = "Attenuator"; + gTagNames[ARPEGGIATOR_TAG] = "Arpeggiator"; gTagNames[BLANK_TAG] = "Blank"; gTagNames[CHORUS_TAG] = "Chorus"; gTagNames[CLOCK_TAG] = "Clock";