mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-02-04 05:15:21 +00:00
(svn r10348) -Fix (r10347): compile errors; do not think it compiles fine when you run make on the wrong working copy.
This commit is contained in:
parent
667e8eaaf8
commit
735c47d7d7
@ -1648,7 +1648,7 @@ static void ExtChangeIndustryProduction(Industry *i)
|
||||
|
||||
new_prod = clamp(new_prod, 1, 255);
|
||||
/* Do not stop closing the industry when it has the lowest possible production rate */
|
||||
if (new_prod == old_prod && && old_prod > 1)) {
|
||||
if (new_prod == old_prod && old_prod > 1) {
|
||||
closeit = false;
|
||||
continue;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user