1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-09-01 10:59:12 +00:00

(svn r22573) -Fix (r22567): Fix operator precedence.

This commit is contained in:
terkhen
2011-06-13 06:13:57 +00:00
parent 050a212195
commit 729d786d5e

View File

@@ -2624,7 +2624,7 @@ bool AfterLoadGame()
if (!IsSavegameVersionBefore(145)) {
Station *st;
FOR_ALL_STATIONS(st) {
if (!st->facilities & FACIL_AIRPORT) continue;
if (!(st->facilities & FACIL_AIRPORT)) continue;
assert(st->airport.psa != NULL);
/* Check if the old storage was empty. */