1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2024-11-22 23:56:13 +01:00

Missed one i

This commit is contained in:
peteGSX 2023-10-12 13:42:14 +10:00
parent 034c441c34
commit ce84974967

View File

@ -185,7 +185,7 @@ public:
for (Turntable *tto = _firstTurntable; tto != 0; tto = tto->_nextTurntable) for (Turntable *tto = _firstTurntable; tto != 0; tto = tto->_nextTurntable)
if (!tto->isHidden()) { if (!tto->isHidden()) {
gotOne = true; gotOne = true;
StringFormatter::send(stream, F("<i %d %d>\n"), tto->getId(), tto->getPosition()); StringFormatter::send(stream, F("<I %d %d>\n"), tto->getId(), tto->getPosition());
} }
return gotOne; return gotOne;
} }