(svn r12173) -Cleanup: Minor codestyle fixes.
authorpeter1138
Mon, 18 Feb 2008 11:47:53 +0000
changeset 9088 d60882689d41
parent 9087 c6ff1721bb00
child 9089 dd3df8d3ded0
(svn r12173) -Cleanup: Minor codestyle fixes.
src/newgrf_config.cpp
--- a/src/newgrf_config.cpp	Mon Feb 18 09:16:02 2008 +0000
+++ b/src/newgrf_config.cpp	Mon Feb 18 11:47:53 2008 +0000
@@ -277,7 +277,7 @@
 			_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 @@
 				/* 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 @@
 
 	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);