diff --git a/thrimbletrimmer/driveclock/drive.js b/thrimbletrimmer/driveclock/drive.js index 66a22cb..a53a7c5 100644 --- a/thrimbletrimmer/driveclock/drive.js +++ b/thrimbletrimmer/driveclock/drive.js @@ -187,7 +187,7 @@ async function drawRoad() { const distanceTrackedOnRoute = distanceTracked % 360; let nextBusStopPosition = null; for (const busStopPosition of BUS_STOP_POSITIONS) { - if (busStopPosition >= distanceTrackedOnRoute + 1) { + if (busStopPosition >= distanceTrackedOnRoute + 0.05) { nextBusStopPosition = busStopPosition; break; }