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

Routes, automations and roster lists: Exclude ID 0 to be presented as available

This commit is contained in:
Harald Barth 2023-05-24 13:31:18 +02:00
parent be4235e792
commit 20d66fad4e

View File

@ -48,7 +48,7 @@
for (int16_t i=0;;i+=sizeof(flashList[0])) { \
int16_t value=GETHIGHFLASHW(flashList,i); \
if (value==INT16_MAX) break; \
StringFormatter::send(stream,F(" %d"),value); \
if (value != 0) StringFormatter::send(stream,F(" %d"),value); \
}