Crash log: Fix counts in recent news messages header
This commit is contained in:
@@ -343,7 +343,7 @@ char *CrashLog::LogGamelog(char *buffer, const char *last) const
|
|||||||
char *CrashLog::LogRecentNews(char *buffer, const char *last) const
|
char *CrashLog::LogRecentNews(char *buffer, const char *last) const
|
||||||
{
|
{
|
||||||
uint total = 0;
|
uint total = 0;
|
||||||
for (NewsItem *news = _latest_news; news != nullptr; news = news->next) {
|
for (NewsItem *news = _latest_news; news != nullptr; news = news->prev) {
|
||||||
total++;
|
total++;
|
||||||
}
|
}
|
||||||
uint show = min<uint>(total, 32);
|
uint show = min<uint>(total, 32);
|
||||||
|
Reference in New Issue
Block a user