(svn r9841) -Codechange: add a little more type strictness to the vehicle types.

This commit is contained in:
rubidium
2007-05-15 11:28:22 +00:00
parent a390db6941
commit 23492f1f34
7 changed files with 15 additions and 6 deletions

View File

@@ -137,6 +137,7 @@ void CcCloneVehicle(bool success, TileIndex tile, uint32 p1, uint32 p2)
case VEH_ROAD: CcCloneRoadVeh( true, tile, p1, p2); break;
case VEH_SHIP: CcCloneShip( true, tile, p1, p2); break;
case VEH_AIRCRAFT: CcCloneAircraft(true, tile, p1, p2); break;
default: NOT_REACHED();
}
}