settings_gui.c
changeset 915 d845fe7cf6f2
parent 893 f4698309dec7
child 930 ab42e283749d
equal deleted inserted replaced
914:4359607898f7 915:d845fe7cf6f2
    66 }
    66 }
    67 
    67 
    68 static inline bool RoadVehiclesAreBuilt(void)
    68 static inline bool RoadVehiclesAreBuilt(void)
    69 {
    69 {
    70 	Vehicle *v;
    70 	Vehicle *v;
    71 	FOR_ALL_VEHICLES(v) { 
    71 	FOR_ALL_VEHICLES(v) {
    72 		if (v->type == VEH_Road) return true;
    72 		if (v->type == VEH_Road) return true;
    73 	}
    73 	}
    74 	return false;
    74 	return false;
    75 }
    75 }
    76 
    76