We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 521b709 commit c51e4d9Copy full SHA for c51e4d9
src/components/shiplog.cpp
@@ -9,9 +9,9 @@ void ShipLog::add(const string& message, glm::u8vec4 color)
9
10
void ShipLog::add(const string& prefix, const string& message, glm::u8vec4 color)
11
{
12
- // Cap the ship's log size to 100 entries. If it exceeds that limit,
+ // Cap the ship's log size to 10,000 entries. If it exceeds that limit,
13
// start erasing entries from the beginning.
14
- if (entries.size() > 100)
+ if (entries.size() > 10000)
15
entries.erase(entries.begin());
16
17
// Timestamp a log entry, color it, and add it to the end of the log.
0 commit comments