summaryrefslogtreecommitdiff
path: root/src/engine.cpp
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2008-01-24 10:47:44 +0000
committerpeter1138 <peter1138@openttd.org>2008-01-24 10:47:44 +0000
commit697b07c99c970ace193eb15fed49ae9de79031e1 (patch)
treecc0c41718a8b741964a2d843daea8ce4fadaedb8 /src/engine.cpp
parent9c65bcea7d41900b49d2b9ee7580018da9ee785a (diff)
downloadopenttd-697b07c99c970ace193eb15fed49ae9de79031e1.tar.xz
(svn r11971) -Codechange: use of FOR_ALL_ENGINES/ENGINEIDS_OF_TYPE instead of for-loops
Diffstat (limited to 'src/engine.cpp')
-rw-r--r--src/engine.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/engine.cpp b/src/engine.cpp
index 74e581588..9ef09432d 100644
--- a/src/engine.cpp
+++ b/src/engine.cpp
@@ -342,10 +342,9 @@ static void NewVehicleAvailable(Engine *e)
void EnginesMonthlyLoop()
{
- Engine *e;
-
if (_cur_year < YEAR_ENGINE_AGING_STOPS) {
- for (e = _engines; e != endof(_engines); e++) {
+ Engine *e;
+ FOR_ALL_ENGINES(e) {
/* Age the vehicle */
if (e->flags & ENGINE_AVAILABLE && e->age != 0xFFFF) {
e->age++;