news_gui.c
changeset 3143 30fa7ff401f8
parent 3140 69cb681c6d86
child 3155 b2cd7bc9f90f
--- a/news_gui.c	Sat Mar 04 13:52:52 2006 +0000
+++ b/news_gui.c	Sat Mar 04 17:18:13 2006 +0000
@@ -861,7 +861,7 @@
 {
 	byte n;
 
-	for (n = _oldest_news; _latest_news != INVALID_NEWS && n != _latest_news + 1; n = (n + 1) % MAX_NEWS) {
+	for (n = _oldest_news; _latest_news != INVALID_NEWS && n != (_latest_news + 1) % MAX_NEWS; n = (n + 1) % MAX_NEWS) {
 		const NewsItem* ni = &_news_items[n];
 
 		if (ni->flags & NF_VEHICLE &&
@@ -883,9 +883,10 @@
 			_total_news--;
 
 			w = FindWindowById(WC_MESSAGE_HISTORY, 0);
-			if (w == NULL) return;
-			SetWindowDirty(w);
-			w->vscroll.count = _total_news;
+			if (w != NULL) {
+				SetWindowDirty(w);
+				w->vscroll.count = _total_news;
+			}
 		}
 	}
 }