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

Revert "Fix: turnout state should be 2/4, not T2/T4"

This commit is contained in:
mstevetodd 2023-04-25 16:17:48 -04:00 committed by GitHub
parent fcf05206b4
commit a07ab9484f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -127,7 +127,7 @@ void WiThrottle::parse(RingStream * stream, byte * cmdx) {
#endif #endif
char tchar=Turnout::isClosed(id)?'2':'4'; char tchar=Turnout::isClosed(id)?'2':'4';
if (tdesc==NULL) // turnout with no description if (tdesc==NULL) // turnout with no description
StringFormatter::send(stream,F("]\\[%d}|{T%d}|{%c"), id,id,tchar); StringFormatter::send(stream,F("]\\[%d}|{T%d}|{T%c"), id,id,tchar);
else else
StringFormatter::send(stream,F("]\\[%d}|{%S}|{%c"), id,tdesc,tchar); StringFormatter::send(stream,F("]\\[%d}|{%S}|{%c"), id,tdesc,tchar);
} }