summaryrefslogtreecommitdiff
path: root/src/ai
diff options
context:
space:
mode:
Diffstat (limited to 'src/ai')
-rw-r--r--src/ai/api/ai_log.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ai/api/ai_log.cpp b/src/ai/api/ai_log.cpp
index 7a269030d..fb2935479 100644
--- a/src/ai/api/ai_log.cpp
+++ b/src/ai/api/ai_log.cpp
@@ -37,9 +37,9 @@
AIObject::GetLogPointer() = new LogData();
LogData *log = (LogData *)AIObject::GetLogPointer();
- log->lines = CallocT<char *>(80);
- log->type = CallocT<AILog::AILogType>(80);
- log->count = 80;
+ log->lines = CallocT<char *>(400);
+ log->type = CallocT<AILog::AILogType>(400);
+ log->count = 400;
log->pos = log->count - 1;
log->used = 0;
}