diff options
author | rubidium <rubidium@openttd.org> | 2008-04-13 11:15:48 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2008-04-13 11:15:48 +0000 |
commit | 48d95252d51ef5eb10368c8579f4bffa06c5ab07 (patch) | |
tree | bbdb20745575bc333b1067f0547b82ec537986cb | |
parent | 1078bc7dd03cc2ff100cae110c719313a57f2a81 (diff) | |
download | openttd-48d95252d51ef5eb10368c8579f4bffa06c5ab07.tar.xz |
(svn r12683) -Fix [FS#1906]: in some cases a news messages would not be shown.
-rw-r--r-- | src/news_gui.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/news_gui.cpp b/src/news_gui.cpp index b65a941a4..07c25cfa6 100644 --- a/src/news_gui.cpp +++ b/src/news_gui.cpp @@ -998,6 +998,7 @@ void DeleteVehicleNews(VehicleID vid, StringID news) if (_total_news == 0) { assert(_latest_news == _oldest_news); _latest_news = INVALID_NEWS; + _current_news = INVALID_NEWS; } /* Since we only imitate a FIFO removing an arbitrary element does need |