Reduce message count in chat to 20

This commit is contained in:
tovjemam 2026-03-01 18:22:24 +01:00
parent f942253c4c
commit a2526fc147

View File

@ -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)
{