From 2d3e7aef5165d0991e3bcecb745757e13f9b6c9c Mon Sep 17 00:00:00 2001 From: Darkvater Date: Fri, 5 Jan 2007 11:41:11 +0000 Subject: (svn r7861) -Fix (r7823): Crash when oldest news was deleted. First check the index for oldest news and THEN decrease index, not the other way around. --- src/news_gui.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/news_gui.c b/src/news_gui.c index 77098744d..677a87765 100644 --- a/src/news_gui.c +++ b/src/news_gui.c @@ -912,17 +912,15 @@ void DeleteVehicleNews(VehicleID vid, StringID news) w = FindWindowById(WC_NEWS_WINDOW, 0); visible_news = (w != NULL) ? (NewsID)(WP(w, news_d).ni - _news_items) : INVALID_NEWS; - i = n; - do { + for (i = n;; i = decreaseIndex(i)) { _news_items[i] = _news_items[decreaseIndex(i)]; if (i == _current_news) _current_news = increaseIndex(_current_news); if (i == _forced_news) _forced_news = increaseIndex(_forced_news); if (i == visible_news) WP(w, news_d).ni = &_news_items[increaseIndex(visible_news)]; - i = decreaseIndex(i); - } while (i != _oldest_news); - + if (i == _oldest_news) break; + } _oldest_news = increaseIndex(_oldest_news); } -- cgit v1.2.3-54-g00ecf