From dc8e76094f41b3c1e31ee91c96d485fc02e489da Mon Sep 17 00:00:00 2001 From: Kragg Malak Date: Wed, 13 Dec 2023 20:43:12 -0700 Subject: [PATCH] Speaking of things in two places. --- esp32_marauder/GpsInterface.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/esp32_marauder/GpsInterface.cpp b/esp32_marauder/GpsInterface.cpp index 0bc3fd1..9b4260e 100644 --- a/esp32_marauder/GpsInterface.cpp +++ b/esp32_marauder/GpsInterface.cpp @@ -549,7 +549,10 @@ String GpsInterface::getTextQueue(bool flush) { for(int i=0;itext_in->get(i); if(now!=""){ - if(text!="") text+='\n'; + if(text!=""){ + text+='\r'; + text+='\n'; + } text+=now; } }