(svn r10684) -Codechange: some more coding style related changes. Primarily moving { to a new line.

This commit is contained in:
rubidium
2007-07-25 00:16:30 +00:00
parent e640900e8a
commit b290268645
9 changed files with 49 additions and 42 deletions

View File

@@ -69,7 +69,8 @@ void CcCloneTrain(bool success, TileIndex tile, uint32 p1, uint32 p2)
* @param len Length measured in 1/8ths of a standard wagon.
* @return Number of pixels across.
*/
int WagonLengthToPixels(int len) {
int WagonLengthToPixels(int len)
{
return (len * _traininfo_vehicle_width) / 8;
}