diff options
author | rubidium <rubidium@openttd.org> | 2007-02-11 19:31:29 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2007-02-11 19:31:29 +0000 |
commit | f8ceee0a345c2284862094f2aa8d6d46c1ff89ed (patch) | |
tree | 684b458a428ef61ac5e4df1f9405da10f8df6494 /src | |
parent | ff8a82f749f02853303487ba5d72486df147cb15 (diff) | |
download | openttd-f8ceee0a345c2284862094f2aa8d6d46c1ff89ed.tar.xz |
(svn r8681) -Fix (FS#608): wrong comment (rfalke)
Diffstat (limited to 'src')
-rw-r--r-- | src/town.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/town.h b/src/town.h index b59bf505a..184cea2e0 100644 --- a/src/town.h +++ b/src/town.h @@ -200,7 +200,7 @@ static inline Town *GetRandomTown(void) num--; index++; - /* Make sure we have a valid industry */ + /* Make sure we have a valid town */ while (!IsValidTownID(index)) { index++; assert(index <= GetMaxTownIndex()); |