From 23492f1f34bf45266e319d4f2c7e2ffcb8dc483c Mon Sep 17 00:00:00 2001 From: rubidium Date: Tue, 15 May 2007 11:28:22 +0000 Subject: (svn r9841) -Codechange: add a little more type strictness to the vehicle types. --- src/depot_gui.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src/depot_gui.cpp') diff --git a/src/depot_gui.cpp b/src/depot_gui.cpp index 7df0c537e..d0fa558b0 100644 --- a/src/depot_gui.cpp +++ b/src/depot_gui.cpp @@ -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(); } } -- cgit v1.2.3-54-g00ecf