Changeset - r14817:efc55ae8d91f
[Not reviewed]
master
0 1 0
alberth - 15 years ago 2010-03-14 14:30:51
alberth@openttd.org
(svn r19418) -Codechange: Code style fix for ValParamTrackOrientation().
1 file changed with 4 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/rail_cmd.cpp
Show inline comments
 
@@ -343,7 +343,10 @@ static CommandCost CheckRailSlope(Slope 
 
}
 

	
 
/* Validate functions for rail building */
 
static inline bool ValParamTrackOrientation(Track track) {return IsValidTrack(track);}
 
static inline bool ValParamTrackOrientation(Track track)
 
{
 
	return IsValidTrack(track);
 
}
 

	
 
/** Build a single piece of rail
 
 * @param tile tile  to build on
0 comments (0 inline, 0 general)