Changeset 161 in tmcsimulator
- Timestamp:
- 10/22/2017 05:21:34 PM (9 years ago)
- File:
-
- 1 edited
-
trunk/src/atmsdriver/ConsoleDriver.java (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/atmsdriver/ConsoleDriver.java
r155 r161 174 174 for(Station station : highway.stations) 175 175 { 176 if(station.postmile > startPost && station.postmile <endPost)176 if(station.postmile >= startPost && station.postmile <= endPost) 177 177 { 178 178 station.updateByDirection(direction, dotColor); … … 192 192 for(Station station : highway.stations) 193 193 { 194 if(station.postmile < startPost && station.postmile >endPost)194 if(station.postmile <= startPost && station.postmile >= endPost) 195 195 { 196 196 station.updateByDirection(direction, dotColor);
Note: See TracChangeset
for help on using the changeset viewer.
