(svn r18342) -Fix: erroneous spaces before ;

This commit is contained in:
rubidium
2009-11-29 19:20:39 +00:00
parent 2784f15304
commit 2e2f72b971
8 changed files with 14 additions and 14 deletions

View File

@@ -35,7 +35,7 @@ void DrawAircraftDetails(const Aircraft *v, int left, int right, int y)
int y_offset = (v->Next()->cargo_cap != 0) ? -(FONT_HEIGHT_NORMAL + 1): 0;
Money feeder_share = 0;
for (const Aircraft *u = v ; u != NULL ; u = u->Next()) {
for (const Aircraft *u = v; u != NULL; u = u->Next()) {
if (u->IsNormalAircraft()) {
SetDParam(0, u->engine_type);
SetDParam(1, u->build_year);