GUI: Increase console buffer size to 1024 lines

This commit is contained in:
Eugene Sandulenko 2023-11-15 23:45:36 +01:00
parent 10b0624223
commit a9892cad18
No known key found for this signature in database
GPG Key ID: 014D387312D34F08

View File

@ -68,8 +68,8 @@ public:
protected:
enum {
kBufferSize = 32768,
kCharsPerLine = 128,
kBufferSize = kCharsPerLine * 1024,
kHistorySize = 20
};