From e659495942664974a1c9e7acbc3006b9b0edd7c8 Mon Sep 17 00:00:00 2001 From: dmitry Date: Sun, 3 Apr 2022 15:29:42 +0300 Subject: [PATCH] fix: increase maximum message length that can me shown on center of screen (resolves #322 ) --- inc/control.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/control.h b/inc/control.h index 568157f..56a1d2f 100644 --- a/inc/control.h +++ b/inc/control.h @@ -242,7 +242,7 @@ template inline void BotControl::msg (const char *fmt, Args & return; } - if (m_isFromConsole || strnlen (result, StringBuffer::StaticBufferSize) > 56 || m_rapidOutput) { + if (m_isFromConsole || strnlen (result, StringBuffer::StaticBufferSize) > 96 || m_rapidOutput) { if (m_rapidOutput) { m_printQueue.emplaceLast (PrintQueueDestination::ClientConsole, result); }