Skip to content

Commit

Permalink
Delay Parameter Names Changed for Clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
RachelMaryamLocke committed Nov 2, 2023
1 parent 2673056 commit e5ec4b5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/processors/other/Delay.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const String mixTag = "mix";

const String delayTimeMsTag = "time_ms";
const String tempoSyncTag = "tempo_sync";
const String tempoSyncAmountTag = "delay_time_type";
const String tempoSyncAmountTag = "time_tempo_sync";
} // namespace

DelayModule::DelayModule (UndoManager* um) : BaseProcessor ("Delay", createParameterLayout(), um)
Expand Down Expand Up @@ -52,10 +52,10 @@ ParamLayout DelayModule::createParameterLayout()

emplace_param<AudioParameterChoice> (params,
tempoSyncAmountTag,
"Tempo Sync",
"Tempo Sync Delay",
StringArray { "1/2", "1/4", "1/8" , "1/8 dotted"},
0);
emplace_param<AudioParameterBool> (params, tempoSyncTag, "Tempo Sync Delay", false);
emplace_param<AudioParameterBool> (params, tempoSyncTag, "Tempo Sync", false);
emplace_param<AudioParameterChoice> (params, delayTypeTag, "Delay Type", StringArray { "Clean", "Lo-Fi" }, 0);
emplace_param<AudioParameterBool> (params, pingPongTag, "Ping-Pong", false);

Expand Down

0 comments on commit e5ec4b5

Please sign in to comment.