diff --git a/include/tags.hpp b/include/tags.hpp index cbf9a2d0..97f33052 100644 --- a/include/tags.hpp +++ b/include/tags.hpp @@ -14,6 +14,7 @@ enum ModelTag { BLANK_TAG, CHORUS_TAG, CLOCK_TAG, + CLOCK_MODULATOR_TAG, // Clock dividers, multipliers, etc. 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 49302164..8c945421 100644 --- a/src/tags.cpp +++ b/src/tags.cpp @@ -13,6 +13,7 @@ void tagsInit() { gTagNames[BLANK_TAG] = "Blank"; gTagNames[CHORUS_TAG] = "Chorus"; gTagNames[CLOCK_TAG] = "Clock"; + gTagNames[CLOCK_MODULATOR_TAG] = "Clock Modulator"; gTagNames[COMPRESSOR_TAG] = "Compressor"; gTagNames[CONTROLLER_TAG] = "Controller"; gTagNames[DELAY_TAG] = "Delay";