From 181d586a7c13a296a1b9355e15e55dda7ac0fcb2 Mon Sep 17 00:00:00 2001 From: tron Date: Sun, 23 Oct 2005 13:04:44 +0000 Subject: (svn r3078) Some more stuff, which piled up: - const, whitespace, indentation, bracing, GB/SB, pointless casts - use the trinary operator where appropriate - data types (uint[] -> AcceptedCargo, ...) - if cascade -> switch - if (ptr) -> if (ptr != NULL) - DeMorgan's Law - Fix some comments - 0 -> '\0', change magic numbers to symbolic constants --- newgrf.c | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) (limited to 'newgrf.c') diff --git a/newgrf.c b/newgrf.c index 482cc5e57..b745522ed 100644 --- a/newgrf.c +++ b/newgrf.c @@ -258,15 +258,9 @@ static bool RailVehicleChangeInfo(uint engine, int numinfo, int prop, byte **buf uint32 base = grf_load_dword(&buf); switch (base) { - case 0x4C30: - rvi[i].engclass = 0; - break; - case 0x4C36: - rvi[i].engclass = 1; - break; - case 0x4C3C: - rvi[i].engclass = 2; - break; + case 0x4C30: rvi[i].engclass = 0; break; + case 0x4C36: rvi[i].engclass = 1; break; + case 0x4C3C: rvi[i].engclass = 2; break; } dewagonize(base, engine + i); } -- cgit v1.2.3-54-g00ecf