| 224 | } |
| 225 | |
| 226 | static void paintTrackPP(PaintSession& session, const World::TrackElement& elTrack, const TrackPaintCommon& trackSession, const uint8_t rotation, const TrackPaintPiece& tpp) |
| 227 | { |
| 228 | if (tpp.isMergeable) |
| 229 | { |
| 230 | paintTrackPPMergeable(session, elTrack, trackSession, rotation, tpp); |
| 231 | } |
| 232 | else |
| 233 | { |
| 234 | paintTrackPPStandard(session, elTrack, trackSession, rotation, tpp); |
| 235 | } |
| 236 | } |
| 237 | |
| 238 | // 0x0049B6BF |
| 239 | void paintTrack(PaintSession& session, const World::TrackElement& elTrack) |
no test coverage detected