From 9d8fa486af824039fae197212d83365242511da5 Mon Sep 17 00:00:00 2001 From: rubidium Date: Fri, 18 Apr 2008 04:37:06 +0000 Subject: (svn r12761) -Codechange: lots of minor whitespace coding style fixes around operators. --- src/viewport.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/viewport.cpp') diff --git a/src/viewport.cpp b/src/viewport.cpp index 84378a617..36b9a6c3d 100644 --- a/src/viewport.cpp +++ b/src/viewport.cpp @@ -1015,7 +1015,7 @@ static void ViewportAddTownNames(DrawPixelInfo *dpi) if (bottom > t->sign.top && top < t->sign.top + 24 && right > t->sign.left && - left < t->sign.left + t->sign.width_1*2) { + left < t->sign.left + t->sign.width_1 * 2) { AddStringToDraw(t->sign.left + 1, t->sign.top + 1, _patches.population_in_label ? STR_TOWN_LABEL_POP : STR_TOWN_LABEL, t->index, t->population); @@ -1082,7 +1082,7 @@ static void ViewportAddStationNames(DrawPixelInfo *dpi) if (bottom > st->sign.top && top < st->sign.top + 24 && right > st->sign.left && - left < st->sign.left + st->sign.width_1*2) { + left < st->sign.left + st->sign.width_1 * 2) { AddStation(st, STR_305C_0, st->sign.width_1); } } @@ -1210,7 +1210,7 @@ static void ViewportAddWaypoints(DrawPixelInfo *dpi) if (bottom > wp->sign.top && top < wp->sign.top + 24 && right > wp->sign.left && - left < wp->sign.left + wp->sign.width_1*2) { + left < wp->sign.left + wp->sign.width_1 * 2) { AddWaypoint(wp, STR_WAYPOINT_VIEWPORT, wp->sign.width_1); } } -- cgit v1.2.3-54-g00ecf