Skip to content

Commit 10d439c

Browse files
committed
UI: Add unit to Arp Speedd param display
In order to avoid mistake, as the knob has a reversed behavior comparing to the original plugin.
1 parent 00ae596 commit 10d439c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CetoneUI.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -679,7 +679,7 @@ void CCetoneUI::onDisplay()
679679
fNanoText.textBox(767, 316, 45.0f, fLabelBuffer);
680680

681681
// Speed
682-
std::snprintf(fLabelBuffer, 32, "%d", (int)((1.f - fArpSpeed->getValue()) * 500.f + 0.5f));
682+
std::snprintf(fLabelBuffer, 32, "%d ms", (int)((1.f - fArpSpeed->getValue()) * 500.f + 0.5f));
683683
fNanoText.textBox(767 + 48, 316, 45.0f, fLabelBuffer);
684684

685685
/* Modulation Slot 1 */

0 commit comments

Comments
 (0)