(svn r16850) -Codechange: unify some naming of variables between waypoints and stations.

This commit is contained in:
rubidium
2009-07-16 20:15:28 +00:00
parent 1f29e38b83
commit dea1144bcb
6 changed files with 15 additions and 15 deletions

View File

@@ -38,7 +38,7 @@ void WaypointsDailyLoop()
/* Check if we need to delete a waypoint */
FOR_ALL_WAYPOINTS(wp) {
if (wp->deleted != 0 && --wp->deleted == 0) delete wp;
if (wp->delete_ctr != 0 && --wp->delete_ctr == 0) delete wp;
}
}