Changed FRONT>REAR to dir=f2r, etc for consistency.

This commit is contained in:
David E. Tiller 2022-04-08 14:39:59 -04:00
parent 89bc82b724
commit 1d7a4b9e82
1 changed files with 4 additions and 2 deletions

View File

@ -415,9 +415,11 @@ void eotd_to_text (unsigned char *eotd, int eotd_len, char *text, int text_size)
#ifndef EOTD_RAW
if (eotd_type == EOTD_TYPE_F2R) {
strlcat(text, "FRONT>REAR:", text_size);
//strlcat(text, "FRONT>REAR:", text_size);
strlcat(text, ":dir-f2r,", text_size);
} else {
strlcat(text, "REAR>FRONT:", text_size);
//strlcat(text, "REAR>FRONT:", text_size);
strlcat(text, ":dir=r2f,", text_size);
}
#ifdef EOTD_TIMESTAMP