mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 01:58:19 +00:00
Increase console backlog size from 64 KB to 1 MB
Can't even list all bot bans currently
This commit is contained in:
parent
cdfc521132
commit
f5eaf393da
|
@ -27,7 +27,7 @@ class CGameConsole : public CComponent
|
|||
ColorRGBA m_PrintColor;
|
||||
char m_aText[1];
|
||||
};
|
||||
CStaticRingBuffer<CBacklogEntry, 64 * 1024, CRingBufferBase::FLAG_RECYCLE> m_Backlog;
|
||||
CStaticRingBuffer<CBacklogEntry, 1024 * 1024, CRingBufferBase::FLAG_RECYCLE> m_Backlog;
|
||||
CStaticRingBuffer<char, 64 * 1024, CRingBufferBase::FLAG_RECYCLE> m_History;
|
||||
char *m_pHistoryEntry;
|
||||
|
||||
|
|
Loading…
Reference in a new issue