(svn r17385) -Codechange: Removed some unneeded parentheses.

This commit is contained in:
alberth 2009-09-02 19:57:22 +00:00
parent a8d768cf6e
commit 284b92f3e9
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
}