diff --git a/src/TEF6686.cpp b/src/TEF6686.cpp index e73d67c..4ec24c8 100644 --- a/src/TEF6686.cpp +++ b/src/TEF6686.cpp @@ -455,7 +455,7 @@ void TEF6686::readRDS(bool showrdserrors) RDScharConverter(rt_buffer, RTtext, sizeof(RTtext) / sizeof(wchar_t), true); // Convert 8 bit ASCII to 16 bit ASCII rds.stationText = convertToUTF8(RTtext); // Convert RDS characterset to ASCII rds.stationText = extractUTF8Substring(rds.stationText, 0, 64, true); // Make sure RT does not exceed 64 characters - rds.stationText += " "; // Add extra space + rds.stationText += " "; // Add extra spaces for (int i = 0; i < 64; i++) rt_buffer2[i] = rt_buffer[i]; }