(svn r8434) -Fix (r8430): Missing braces caused compilation failure for some (most?) compilers...

This commit is contained in:
2007-01-27 22:28:28 +00:00
parent f5412c1a41
commit 60ddc05925
3 changed files with 6 additions and 3 deletions

View File

@@ -274,7 +274,7 @@ static void ProcessShipOrder(Vehicle *v)
static void HandleShipLoading(Vehicle *v)
{
switch (v->current_order.type) {
case OT_LOADING:
case OT_LOADING: {
if (--v->load_unload_time_rem) return;
if (CanFillVehicle(v) && (
@@ -294,6 +294,7 @@ static void HandleShipLoading(Vehicle *v)
v->LeaveStation();
if (!(b.flags & OF_NON_STOP)) return;
break;
}
case OT_DUMMY: break;