diff options
author | truelight <truelight@openttd.org> | 2007-09-13 18:26:18 +0000 |
---|---|---|
committer | truelight <truelight@openttd.org> | 2007-09-13 18:26:18 +0000 |
commit | bf17a96b630302b5e5ec538b9665745aebfee108 (patch) | |
tree | 57ed313459cf2555a7e2ff9715c89a4de425d0e7 /src | |
parent | 8cd9ab9b7eb684737321cb09a875e41b1632a609 (diff) | |
download | openttd-bf17a96b630302b5e5ec538b9665745aebfee108.tar.xz |
(svn r11096) -Fix: when 2 different GRF-files had the same name (e.g.: ""), the double-entry checker didn't always work correctly, resulting in multiple entries of the same grf in the list
Diffstat (limited to 'src')
-rw-r--r-- | src/newgrf_config.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/newgrf_config.cpp b/src/newgrf_config.cpp index 49a90d0da..2e30841b4 100644 --- a/src/newgrf_config.cpp +++ b/src/newgrf_config.cpp @@ -315,9 +315,14 @@ static uint ScanPath(const char *path, int basepath_length) /* Insert file into list at a position determined by its * name, so the list is sorted as we go along */ GRFConfig **pd, *d; + bool stop = false; 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; - if (strcasecmp(c->name, d->name) <= 0) break; + /* 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. */ + if (strcasecmp(c->name, d->name) <= 0) stop = true; + else if (stop) break; } if (added) { c->next = d; |