Changeset - r13171:0e07c3ba2aa9
[Not reviewed]
master
0 2 0
smatz - 15 years ago 2009-10-04 04:57:01
smatz@openttd.org
(svn r17688) -Fix (r17684): incorrect comments
2 files changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
src/roadveh.h
Show inline comments
 
@@ -86,13 +86,13 @@ byte GetRoadVehLength(const RoadVehicle 
 

	
 
void RoadVehUpdateCache(RoadVehicle *v);
 

	
 
/** Cached oftenly queried (NewGRF) values */
 
struct RoadVehicleCache {
 
	byte cached_veh_length;
 
	EngineID first_engine;   ///< cached EngineID of the front vehicle. INVALID_VEHICLE for the front vehicle itself.
 
	EngineID first_engine;   ///< cached EngineID of the front vehicle. INVALID_ENGINE for the front vehicle itself.
 
};
 

	
 
/**
 
 * Buses, trucks and trams belong to this class.
 
 */
 
struct RoadVehicle : public SpecializedVehicle<RoadVehicle, VEH_ROAD> {
src/train.h
Show inline comments
 
@@ -93,13 +93,13 @@ struct TrainCache {
 
	 * bit     6 = disable visual effect.
 
	 * bit     7 = disable powered wagons.
 
	 */
 
	byte cached_vis_effect;
 
	byte user_def_data;
 

	
 
	EngineID first_engine;  ///< cached EngineID of the front vehicle. INVALID_VEHICLE for the front vehicle itself.
 
	EngineID first_engine;  ///< cached EngineID of the front vehicle. INVALID_ENGINE for the front vehicle itself.
 
};
 

	
 
/**
 
 * 'Train' is either a loco or a wagon.
 
 */
 
struct Train : public SpecializedVehicle<Train, VEH_TRAIN> {
0 comments (0 inline, 0 general)