From ba24c34f8558369cc0802c92963b40ff5c7b0bc2 Mon Sep 17 00:00:00 2001 From: rubidium Date: Fri, 18 May 2007 17:31:41 +0000 Subject: (svn r9869) -Codechange: replace some bytes with VehicleType, i.e. more type strictness. --- src/newgrf.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/newgrf.cpp') diff --git a/src/newgrf.cpp b/src/newgrf.cpp index 3dc46fcbf..10326ef7a 100644 --- a/src/newgrf.cpp +++ b/src/newgrf.cpp @@ -4550,6 +4550,8 @@ static void CalculateRefitMasks() /* Check if this engine's cargo type is valid. If not, set to the first refittable * cargo type. Apparently cargo_type isn't a common property... */ switch (GetEngine(engine)->type) { + default: NOT_REACHED(); + case VEH_AIRCRAFT: break; case VEH_TRAIN: { RailVehicleInfo *rvi = &_rail_vehicle_info[engine]; if (rvi->cargo_type == CT_INVALID) rvi->cargo_type = FindFirstRefittableCargo(engine); -- cgit v1.2.3-54-g00ecf