summaryrefslogtreecommitdiff
path: root/src/newgrf_config.cpp
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2007-09-13 18:35:29 +0000
committertruelight <truelight@openttd.org>2007-09-13 18:35:29 +0000
commit45a1ad524adc969cac39a03d83f6369b6a5d917e (patch)
tree2eb250dd1ffc354927f28d27e4592aeae71ecef8 /src/newgrf_config.cpp
parentf9a4d4e1a445a4ca92ee2fcaa72b3c777b13beae (diff)
downloadopenttd-45a1ad524adc969cac39a03d83f6369b6a5d917e.tar.xz
(svn r11098) -Fix r11096: forgot spaces before comments
Diffstat (limited to 'src/newgrf_config.cpp')
-rw-r--r--src/newgrf_config.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/newgrf_config.cpp b/src/newgrf_config.cpp
index 70e068450..f320d2c05 100644
--- a/src/newgrf_config.cpp
+++ b/src/newgrf_config.cpp
@@ -287,8 +287,8 @@ static bool ScanPathAddGrf(const char *filename)
for (pd = &_all_grfs; (d = *pd) != NULL; pd = &d->next) {
if (c->grfid == d->grfid && memcmp(c->md5sum, d->md5sum, sizeof(c->md5sum)) == 0) added = false;
/* Because there can be multiple grfs with the same name, make sure we checked all grfs with the same name,
- * before inserting the entry. So insert a new grf at the end of all grfs with the same name, instead of
- * just after the first with the same name. Avoids doubles in the list. */
+ * before inserting the entry. So insert a new grf at the end of all grfs with the same name, instead of
+ * just after the first with the same name. Avoids doubles in the list. */
if (strcasecmp(c->name, d->name) <= 0) stop = true;
else if (stop) break;
}