mirror of https://github.com/OpenTTD/OpenTTD
(svn r22573) -Fix (r22567): Fix operator precedence.
parent
050a212195
commit
729d786d5e
|
@ -2624,7 +2624,7 @@ bool AfterLoadGame()
|
||||||
if (!IsSavegameVersionBefore(145)) {
|
if (!IsSavegameVersionBefore(145)) {
|
||||||
Station *st;
|
Station *st;
|
||||||
FOR_ALL_STATIONS(st) {
|
FOR_ALL_STATIONS(st) {
|
||||||
if (!st->facilities & FACIL_AIRPORT) continue;
|
if (!(st->facilities & FACIL_AIRPORT)) continue;
|
||||||
assert(st->airport.psa != NULL);
|
assert(st->airport.psa != NULL);
|
||||||
|
|
||||||
/* Check if the old storage was empty. */
|
/* Check if the old storage was empty. */
|
||||||
|
|
Loading…
Reference in New Issue