diff --git a/src/ui/WaypointList.cc b/src/ui/WaypointList.cc index 69dd9cf..4fe9f6d 100644 --- a/src/ui/WaypointList.cc +++ b/src/ui/WaypointList.cc @@ -302,7 +302,7 @@ void WaypointList::saveWaypoints() for (int i = 0; i < waypoints.size(); i++) { Waypoint* wp = waypoints[i]; - in << "\t" << wp->getId() << "\t" << wp->getX() << "\t" << wp->getY() << "\t" << wp->getZ() << "\t" << wp->getYaw() << "\t" << wp->getAutoContinue() << "\t" << wp->getCurrent() << wp->getOrbit() << "\t" << wp->getHoldTime() << "\n"; + in << "\t" << wp->getId() << "\t" << wp->getX() << "\t" << wp->getY() << "\t" << wp->getZ() << "\t" << wp->getYaw() << "\t" << wp->getAutoContinue() << "\t" << wp->getCurrent() << "\t" << wp->getOrbit() << "\t" << wp->getHoldTime() << "\n"; in.flush(); } file.close();