Changeset - r14545:d5983304610d
[Not reviewed]
master
0 1 0
frosch - 14 years ago 2010-02-14 13:01:07
frosch@openttd.org
(svn r19126) -Codechange: Silence a warning.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/industry_cmd.cpp
Show inline comments
 
@@ -1809,7 +1809,7 @@ static void PlaceInitialIndustry(Industr
 

	
 
	IncreaseGeneratingWorldProgress(GWP_INDUSTRY);
 

	
 
	for (uint i = 0; i < (try_hard ? 10000 : 2000); i++) {
 
	for (uint i = 0; i < (try_hard ? 10000u : 2000u); i++) {
 
		if (CreateNewIndustry(RandomTile(), type) != NULL) break;
 
	}
 

	
0 comments (0 inline, 0 general)