From 507dfca91307fd6534a97232935a1afab4bc518e Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Fri, 2 Feb 2018 15:55:19 -0500 Subject: [PATCH] Added clock modulator tag --- include/tags.hpp | 1 + src/tags.cpp | 1 + 2 files changed, 2 insertions(+) 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";