From f5eaf393dab04726bbd267400974f51a27f05551 Mon Sep 17 00:00:00 2001 From: def Date: Mon, 15 Nov 2021 23:26:17 +0100 Subject: [PATCH] Increase console backlog size from 64 KB to 1 MB Can't even list all bot bans currently --- src/game/client/components/console.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/client/components/console.h b/src/game/client/components/console.h index 2231ba771..9b0f2d457 100644 --- a/src/game/client/components/console.h +++ b/src/game/client/components/console.h @@ -27,7 +27,7 @@ class CGameConsole : public CComponent ColorRGBA m_PrintColor; char m_aText[1]; }; - CStaticRingBuffer m_Backlog; + CStaticRingBuffer m_Backlog; CStaticRingBuffer m_History; char *m_pHistoryEntry;