diff --git a/src/newgrf_config.cpp b/src/newgrf_config.cpp index 95fc46ce1a..b1ce866011 100644 --- a/src/newgrf_config.cpp +++ b/src/newgrf_config.cpp @@ -277,7 +277,7 @@ static bool ScanPathAddGrf(const char *filename) _all_grfs = c; } else { /* Insert file into list at a position determined by its - * name, so the list is sorted as we go along */ + * 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) { @@ -285,8 +285,11 @@ static bool ScanPathAddGrf(const char *filename) /* 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 (strcasecmp(c->name, d->name) <= 0) { + stop = true; + } else if (stop) { + break; + } } if (added) { c->next = d; @@ -299,7 +302,7 @@ static bool ScanPathAddGrf(const char *filename) if (!added) { /* File couldn't be opened, or is either not a NewGRF or is a - * 'system' NewGRF or it's already known, so forget about it. */ + * 'system' NewGRF or it's already known, so forget about it. */ free(c->filename); free(c->name); free(c->info);