Index: trunk/src/atmsdriver/ConsoleDriver.java
===================================================================
--- trunk/src/atmsdriver/ConsoleDriver.java	(revision 155)
+++ trunk/src/atmsdriver/ConsoleDriver.java	(revision 161)
@@ -174,5 +174,5 @@
             for(Station station : highway.stations)
             {
-                if(station.postmile > startPost && station.postmile < endPost)
+                if(station.postmile >= startPost && station.postmile <= endPost)
                 {
                     station.updateByDirection(direction, dotColor);
@@ -192,5 +192,5 @@
             for(Station station : highway.stations)
             {
-                if(station.postmile < startPost && station.postmile > endPost)
+                if(station.postmile <= startPost && station.postmile >= endPost)
                 {
                     station.updateByDirection(direction, dotColor);
