Changeset - r12883:3a22a9c30225
[Not reviewed]
master
0 1 0
alberth - 15 years ago 2009-09-02 19:57:22
alberth@openttd.org
(svn r17385) -Codechange: Removed some unneeded parentheses.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/news_gui.cpp
Show inline comments
 
@@ -310,7 +310,7 @@ struct NewsWindow : Window {
 
						if (tile1 != INVALID_TILE) ShowExtraViewPortWindow(tile1);
 
						if (tile2 != INVALID_TILE) ShowExtraViewPortWindow(tile2);
 
					} else {
 
						if (((tile1 == INVALID_TILE) || !ScrollMainWindowToTile(tile1)) && (tile2 != INVALID_TILE)) {
 
						if ((tile1 == INVALID_TILE || !ScrollMainWindowToTile(tile1)) && tile2 != INVALID_TILE) {
 
							ScrollMainWindowToTile(tile2);
 
						}
 
					}
0 comments (0 inline, 0 general)