| 527 | } |
| 528 | |
| 529 | static void TrackDesignSaveRemoveFootpath(const CoordsXY& loc, PathElement* pathElement) |
| 530 | { |
| 531 | auto pathEntry = TrackDesignSaveFootpathGetBestEntry(*pathElement); |
| 532 | if (pathEntry.has_value()) |
| 533 | { |
| 534 | auto item = TrackDesignSaveCreateFootpathDesc(pathEntry.value(), loc, *pathElement); |
| 535 | TrackDesignSavePopTileElement(loc, reinterpret_cast<TileElement*>(pathElement)); |
| 536 | TrackDesignSavePopTileElementDesc(item); |
| 537 | } |
| 538 | } |
| 539 | |
| 540 | /** |
| 541 | * |
no test coverage detected