Compare commits

...

1 Commits

Author SHA1 Message Date
chaoticgd
2501d87840 Console: Fix newline logging regression 2024-11-28 12:53:42 -05:00

View File

@@ -103,10 +103,7 @@ public:
{
// Ignore control characters.
// Otherwise you get fun bells going off.
if (ch < 0x20)
continue;
if (ch != '\n')
if (ch >= 0x20)
m_buffer.push_back(ch);
if (ch == '\n' || m_buffer.size() >= 4096)