C4AulParse: Don't escape spaces in bytecode dumps of strings

qteditor
Günther Brammer 2016-05-02 00:35:23 +02:00
parent 99f704fbb8
commit 994cb52cea
1 changed files with 1 additions and 1 deletions

View File

@ -662,7 +662,7 @@ void C4AulScriptFunc::DumpByteCode()
const StdStrBuf &s = bcc.Par.s->GetData();
std::string es;
std::for_each(s.getData(), s.getData() + s.getLength(), [&es](char c) {
if (std::isgraph((unsigned char)c))
if (std::isprint((unsigned char)c))
{
es += c;
}