diff --git a/src/saveload/vehicle_sl.cpp b/src/saveload/vehicle_sl.cpp --- a/src/saveload/vehicle_sl.cpp +++ b/src/saveload/vehicle_sl.cpp @@ -165,7 +165,7 @@ void UpdateOldAircraft() * skip those */ if (IsNormalAircraft(a)) { /* airplane in terminal stopped doesn't hurt anyone, so goto next */ - if (a->vehstatus & VS_STOPPED && a->state == 0) { + if ((a->vehstatus & VS_STOPPED) && a->state == 0) { a->state = HANGAR; continue; }