summaryrefslogtreecommitdiff
path: root/station_cmd.c
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2006-08-22 16:22:07 +0000
committertruelight <truelight@openttd.org>2006-08-22 16:22:07 +0000
commitc0f352670ac91977145a3a9df44e5cabfb9c49b6 (patch)
tree5ded094cc8b54037f0c938fc2c0e2c7efe4b07c9 /station_cmd.c
parenta4d7fa19c7164d2cc7b8d9cc975cc5463f5de694 (diff)
downloadopenttd-c0f352670ac91977145a3a9df44e5cabfb9c49b6.tar.xz
(svn r6049) -Codechange: forgot EngineRenew in r6047
-Codechange: cleaned up the EngineRenew code a bit (coding style mostly) -Codechange: forgot the correct comment in station_cmd -Codechange: move pool-stuff to engine.h, like we always do
Diffstat (limited to 'station_cmd.c')
-rw-r--r--station_cmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/station_cmd.c b/station_cmd.c
index 56c5af3e3..afd5e3581 100644
--- a/station_cmd.c
+++ b/station_cmd.c
@@ -52,7 +52,7 @@ static void StationPoolNewBlock(uint start_item)
Station *st;
/* We don't use FOR_ALL here, because FOR_ALL skips invalid items.
- * This is just a temporary stage, this will be removed. */
+ * TODO - This is just a temporary stage, this will be removed. */
for (st = GetStation(start_item); st != NULL; st = (st->index + 1 < GetStationPoolSize()) ? GetStation(st->index + 1) : NULL) st->index = start_item++;
}