From 2501d878406bcfda0d01e4f6fa2a9ca32aef5308 Mon Sep 17 00:00:00 2001 From: chaoticgd <43898262+chaoticgd@users.noreply.github.com> Date: Thu, 28 Nov 2024 09:04:56 +0000 Subject: [PATCH] Console: Fix newline logging regression --- pcsx2/DebugTools/Debug.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pcsx2/DebugTools/Debug.h b/pcsx2/DebugTools/Debug.h index 2d0e89aa50..ad686cfac6 100644 --- a/pcsx2/DebugTools/Debug.h +++ b/pcsx2/DebugTools/Debug.h @@ -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)