From 6d8d772cd629237fbd89a22cd84d0f4cb9971d44 Mon Sep 17 00:00:00 2001 From: Daniel Jones Date: Tue, 13 Feb 2024 19:22:30 +0000 Subject: [PATCH] TimeShift: Fix name --- source/src/node/operators/time-shift.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/src/node/operators/time-shift.cpp b/source/src/node/operators/time-shift.cpp index 56824914..0a7a4677 100644 --- a/source/src/node/operators/time-shift.cpp +++ b/source/src/node/operators/time-shift.cpp @@ -8,7 +8,7 @@ namespace signalflow TimeShift::TimeShift(NodeRef a) : UnaryOpNode(a) { - this->name = "TimeShift"; + this->name = "time-shift"; } void TimeShift::process(Buffer &out, int num_frames)