From 4135df942d5f22d048b7e2ed488914a6e675c805 Mon Sep 17 00:00:00 2001 From: Tom Early Date: Thu, 25 Oct 2018 15:01:28 -0700 Subject: [PATCH] change NEMA APRS icon to a red dot. --- QnetGateway.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/QnetGateway.cpp b/QnetGateway.cpp index 83b0d00..051d7e4 100644 --- a/QnetGateway.cpp +++ b/QnetGateway.cpp @@ -2915,7 +2915,7 @@ void CQnetGateway::build_aprs_from_gps_and_send(short int rptr_idx) return; } /* secondary table */ - strcat(buf, "\\"); + strcat(buf, "/"); if (lon_str && lon_EW) { if ((*lon_EW != 'E') && (*lon_EW != 'W')) { @@ -2939,7 +2939,7 @@ void CQnetGateway::build_aprs_from_gps_and_send(short int rptr_idx) } /* Just this symbolcode only */ - strcat(buf, "k"); + strcat(buf, "/"); strncat(buf, band_txt[rptr_idx].gpid + 13, 32); // printf("Built APRS from old GPS mode=[%s]\n", buf);