Browse Source

Add arpeggiator tag

tags/v0.6.0
Andrew Belt 6 years ago
parent
commit
7b1e00ec30
2 changed files with 4 additions and 2 deletions
  1. +2
    -1
      include/tags.hpp
  2. +2
    -1
      src/tags.cpp

+ 2
- 1
include/tags.hpp View File

@@ -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,


+ 2
- 1
src/tags.cpp View File

@@ -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";


Loading…
Cancel
Save