FP8: don't send non-ASCII chars to scribble-strip

In particular the degree sign (\u00B0) used by Mixbus' panner
caused issues.
This commit is contained in:
Robin Gareus 2020-02-13 03:12:14 +01:00
parent 46a6f47362
commit 3cb4678bb3
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -110,6 +110,9 @@ public:
for (size_t i = 0; i < txt.size(); ++i)
{
if (txt[i] < 0) {
continue;
}
d.push_back (txt[i]);
if (i >= 8) {
break;