mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
increased limit for messages to 1000
This commit is contained in:
parent
ab641abd9c
commit
8eaca85402
|
@ -13,7 +13,7 @@ template <typename T>
|
||||||
class LimitedQueue
|
class LimitedQueue
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
LimitedQueue(int limit = 100, int buffer = 25)
|
LimitedQueue(int limit = 1000, int buffer = 250)
|
||||||
: _offset(0)
|
: _offset(0)
|
||||||
, _limit(limit)
|
, _limit(limit)
|
||||||
, _buffer(buffer)
|
, _buffer(buffer)
|
||||||
|
|
Loading…
Reference in a new issue