(svn r3181) -Bracing
-Indentation -Whitespace -DeMorgan's Law -Test with NULL or 0 for non-booleans -'\0' instead of 0 for chars -Remove redundantly redundant comments (like DoFoo(); // Do foo) -Join multiple short lines with a single statement -Split single lines with multiple statements -Avoid assignments in if
This commit is contained in:
@@ -166,7 +166,7 @@ struct WorldSprite {
|
||||
|
||||
struct Vehicle {
|
||||
byte type; // type, ie roadven,train,ship,aircraft,special
|
||||
byte subtype; // subtype (Filled with values from EffectVehicles or TrainSubTypes)(Filled with values from EffectVehicles or TrainSubTypes)
|
||||
byte subtype; // subtype (Filled with values from EffectVehicles or TrainSubTypes)
|
||||
|
||||
VehicleID index; // NOSAVE: Index in vehicle array
|
||||
|
||||
@@ -184,7 +184,6 @@ struct Vehicle {
|
||||
|
||||
int32 x_pos; // coordinates
|
||||
int32 y_pos;
|
||||
|
||||
byte z_pos;
|
||||
byte direction; // facing
|
||||
|
||||
@@ -263,8 +262,6 @@ struct Vehicle {
|
||||
int32 profit_last_year;
|
||||
uint32 value;
|
||||
|
||||
|
||||
|
||||
union {
|
||||
VehicleRail rail;
|
||||
VehicleAir air;
|
||||
|
||||
Reference in New Issue
Block a user