From 42f8a1e9f94b5b1e2080b80598c228b1e90789cb Mon Sep 17 00:00:00 2001 From: Sjef Verhoeven PE5PVB Date: Thu, 12 Oct 2023 21:46:11 +0200 Subject: [PATCH] Changed 0x60 to ` in RDS table --- src/TEF6686.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TEF6686.cpp b/src/TEF6686.cpp index f2fad0b..cd6f67f 100644 --- a/src/TEF6686.cpp +++ b/src/TEF6686.cpp @@ -1095,7 +1095,7 @@ void TEF6686::RDScharConverter(const char* input, wchar_t* output, size_t size, case 0x21 ... 0x5D: output[i] = static_cast(currentChar); break; case 0x5E: output[i] = L'―'; break; case 0x5F: output[i] = L'_'; break; - case 0x60: output[i] = L'‖'; break; + case 0x60: output[i] = L'`'; break; case 0x61 ... 0x7d: output[i] = static_cast(currentChar); break; case 0x7E: output[i] = L'¯'; break; case 0x7F: output[i] = L' '; break;