(svn r9068) -Codechange: capitalize the VEH_Train etc. enums to match the coding style (and rest of the code).

This commit is contained in:
rubidium
2007-03-08 16:27:54 +00:00
parent aca3fb2b6e
commit ce919e8c71
46 changed files with 596 additions and 596 deletions

View File

@@ -82,7 +82,7 @@ static inline bool RoadVehiclesAreBuilt()
const Vehicle* v;
FOR_ALL_VEHICLES(v) {
if (v->type == VEH_Road) return true;
if (v->type == VEH_ROAD) return true;
}
return false;
}