From a2526fc14722fb8b65543d4c41d578f84d16b26c Mon Sep 17 00:00:00 2001 From: tovjemam Date: Sun, 1 Mar 2026 18:22:24 +0100 Subject: [PATCH] Reduce message count in chat to 20 --- src/client/app.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/app.cpp b/src/client/app.cpp index 351e9ee..a66f546 100644 --- a/src/client/app.cpp +++ b/src/client/app.cpp @@ -167,7 +167,7 @@ void App::SendInput(game::PlayerInputType type, bool enable) void App::InitChat() { - chatpos_.resize(30); // max messages on screen + chatpos_.resize(20); // max messages on screen const float chat_scale = 1.0f; for (size_t i = 0; i < chatpos_.size(); ++i) {