(svn r16091) -Change [FS#2778]: Reverse the order of the lines in the AI debug window

This commit is contained in:
yexo
2009-04-19 14:42:03 +00:00
parent 713da56d9b
commit 3e2e5b097c
2 changed files with 17 additions and 3 deletions

View File

@@ -32,7 +32,7 @@
log->lines = CallocT<char *>(80);
log->type = CallocT<AILog::AILogType>(80);
log->count = 80;
log->pos = log->count;
log->pos = log->count - 1;
log->used = 0;
}
LogData *log = (LogData *)AIObject::GetLogPointer();