1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-04-30 15:49:41 +02:00

Bug 453 - Nyquist receives Unicode characters from Audacity producing platform-inconsistent behaviour

This commit is contained in:
Leland Lucius 2021-02-02 03:01:00 -06:00
parent 282bdfa5cc
commit 392360a629

View File

@ -2497,7 +2497,7 @@ void NyquistEffect::OutputCallback(int c)
{
// Always collect Nyquist error messages for normal plug-ins
if (!mRedirectOutput) {
mDebugOutputStr += (char)c;
mDebugOutputStr += (wxChar)c;
return;
}