(svn r12762) -Fix: tabs after the first non-tab character are generally not okay (or lines starting with a space and then tabs).

This commit is contained in:
rubidium
2008-04-18 04:54:09 +00:00
parent ca1f8fbe2e
commit f4b07a78c4
13 changed files with 58 additions and 58 deletions

View File

@@ -100,7 +100,7 @@ static void MakeDefaultWaypointName(Waypoint* wp)
Waypoint *lwp = GetWaypoint(cid);
/* check only valid waypoints... */
if (lwp->IsValid() && wp != lwp) {
if (lwp->IsValid() && wp != lwp) {
/* only waypoints with 'generic' name within the same city */
if (lwp->name == NULL && lwp->town_index == wp->town_index) {
/* if lwp->town_cn < next, uint will overflow to '+inf' */