Changeset - r7573:0a72989ad9ee
[Not reviewed]
master
0 1 0
truelight - 17 years ago 2007-09-13 18:35:29
truelight@openttd.org
(svn r11098) -Fix r11096: forgot spaces before comments
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
src/newgrf_config.cpp
Show inline comments
 
@@ -287,8 +287,8 @@ static bool ScanPathAddGrf(const char *f
 
			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;
 
			}
0 comments (0 inline, 0 general)