bump the default history size to 5000

100 is just too small, especially since we're not removing duplicate
entries.
develop
myk002 2022-07-26 10:24:05 -07:00
parent 6e89f89b3f
commit 5b0f9ddd4f
No known key found for this signature in database
GPG Key ID: 8A39CA0FA0C16E78
1 changed files with 1 additions and 1 deletions

@ -44,7 +44,7 @@ namespace DFHack
class CommandHistory class CommandHistory
{ {
public: public:
CommandHistory(std::size_t capacity = 100) CommandHistory(std::size_t capacity = 5000)
{ {
this->capacity = capacity; this->capacity = capacity;
} }