(svn r20289) -Codechange: Unify fall through coding style.

This commit is contained in:
terkhen
2010-08-01 20:52:11 +00:00
parent 7b62e4dc8e
commit 80c43f52e8
13 changed files with 24 additions and 16 deletions

View File

@@ -349,7 +349,8 @@ CommandCost CmdBuildCanal(TileIndex tile, DoCommandFlag flags, uint32 p1, uint32
MakeSea(tile);
break;
}
/* FALL THROUGH */
/* FALL THROUGH */
default:
MakeCanal(tile, _current_company, Random());
break;
@@ -904,7 +905,8 @@ void DoFloodTile(TileIndex target)
flooded = true;
break;
}
/* FALL THROUGH */
/* FALL THROUGH */
case MP_CLEAR:
if (DoCommand(target, 0, 0, DC_EXEC, CMD_LANDSCAPE_CLEAR).Succeeded()) {
MakeShore(target);