From ce84974967cd9771479116a7cde2dfd2d1b627e9 Mon Sep 17 00:00:00 2001 From: peteGSX Date: Thu, 12 Oct 2023 13:42:14 +1000 Subject: [PATCH] Missed one i --- Turntables.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Turntables.h b/Turntables.h index 6c15bab..aa089ef 100644 --- a/Turntables.h +++ b/Turntables.h @@ -185,7 +185,7 @@ public: for (Turntable *tto = _firstTurntable; tto != 0; tto = tto->_nextTurntable) if (!tto->isHidden()) { gotOne = true; - StringFormatter::send(stream, F("\n"), tto->getId(), tto->getPosition()); + StringFormatter::send(stream, F("\n"), tto->getId(), tto->getPosition()); } return gotOne; }